playlistk

playlistk

Create playlists that can combine Youtube videos, Soundcloud songs, and Bandcamp songs, into one list or multiple lists.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "playlistk",
  "description": "Create playlists that can combine Youtube videos, Soundcloud songs, and Bandcamp songs, into one list or multiple lists.",
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*"
      ],
      "js": [
        "scripts.js",
        "jquery.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://ajax.googleapis.com/"
  ]
}