spotify remote

spotify remote

get access to the spotify remote service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "spotify remote",
  "description": "get access to the spotify remote service",
  "version": "0.0.5",
  "background": {
    "scripts": [
      "jquery-2.1.4.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "alarms",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "spotify remote"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2
}