SoundCloud Likes to Playlist

SoundCloud Likes to Playlist

Extension to add all your SoundCloud Likes to a Playlist in seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "2.2.11",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/icon.png",
    "128": "images/logo-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {},
  "omnibox": {
    "keyword": "soundcloud"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.soundcloud.com/*",
        "https://*.soundcloud.com/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "webRequest"
  ],
  "web_accessible_resources": [
    "images/*"
  ]
}