Pandora's Unboxing

Pandora's Unboxing

Inactive mode of Pandora radio will be skipped - listening to music continuously.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pandora's Unboxing",
  "description": "Inactive mode of Pandora radio will be skipped - listening to music continuously.",
  "version": "0.2.5",
  "content_scripts": [
    {
      "matches": [
        "http://www.pandora.com/*",
        "file://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "http://www.pandora.com/*"
  ],
  "background": {
    "scripts": [
      "myscript.js"
    ]
  }
}