YouTube Randomiser

YouTube Randomiser

Shuffle YouTube albums.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Randomiser",
  "description": "Shuffle YouTube albums.",
  "version": "0.8.1",
  "icons": {
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "js": [
        "scripts/inject.js"
      ],
      "css": [
        "styles/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "scripts/extension.js"
  ],
  "background": {
    "scripts": [
      "scripts/bootstrap.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "https://www.youtube.com/",
    "http://www.youtube.com/"
  ],
  "page_action": {
    "default_title": "YouTube Randomiser",
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  }
}