PanTube

PanTube

PanTube = Pandora + YouTube Your Pandora playlists on YouTube.com!!! This plugin stores all of the music Pandora plays for the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PanTube",
  "version": "0.1",
  "icons": {
    "16": "icon16.png",
    "128": "icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_title": "PanTube",
    "default_icon": "icon16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.pandora.com/*",
        "https://www.pandora.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}