More Spotify Settings

More Spotify Settings

Skip and control speed for spotify

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Spotify Bot",
  "description": "Manage your streams",
  "version": "1.0",
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "img/logo_128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/script.js",
        "js/speed.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ]
  }
}