Pandora History

Pandora History

Keep track of the Pandora songs that you have listened to.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Pandora History",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Keep track of the Pandora songs that you have listened to.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.pandora.com/*",
        "https://www.pandora.com/*"
      ],
      "js": [
        "songProcessor.js"
      ],
      "run_at": "document_end"
    }
  ]
}