Add Song to Youtube Playlist

Add Song to Youtube Playlist

Works with Pandora and IHeartRadio only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Add Song to Youtube Playlist",
  "description": "Works with Pandora and IHeartRadio only.",
  "version": "0.0.0.4",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "https://gdata.youtube.com/*",
    "https://www.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.pandora.com/*",
        "*://*.iheart.com/*"
      ],
      "js": [
        "jquery-1.10.2.min.js",
        "playlist.js"
      ],
      "run_at": "document_end"
    }
  ]
}