Pandora Listener

Pandora Listener

Removes the annoying Are You Still Listening? from Pandora.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-1.7.2.min.js",
        "js/jquery.livequery.min.js",
        "js/jquery.simulate.js",
        "js/radio-enhancer.js"
      ],
      "matches": [
        "*://*.pandora.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Removes the annoying Are You Still Listening? from Pandora.",
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "name": "Pandora Listener",
  "page_action": {
    "default_icon": "images/icon.png",
    "default_popup": "settings.html",
    "default_title": "Pandora Listener"
  },
  "permissions": [
    "notifications"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.0"
}