Spotify Playback Speed

Spotify Playback Speed

Adds a button and menu to manipulate playback speed on Spotify Web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spotify Playback Speed",
  "description": "Adds a button and menu to manipulate playback speed on Spotify Web.",
  "version": "1.11",
  "manifest_version": 3,
  "author": "@rnikko",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "resources": [
        "script.js"
      ]
    }
  ]
}