Spotify Ad Remover

Spotify Ad Remover

Removes audio ads on Spotify™ Web Player. It also disables the 'premium' button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spotify Ad Remover",
  "version": "1.5.4",
  "description": "Removes audio ads on Spotify™ Web Player. It also disables the 'premium' button.",
  "host_permissions": [
    "https://open.spotify.com/*"
  ],
  "icons": {
    "128": "icon/icon.png"
  },
  "action": {
    "default_icon": {
      "128": "icon/icon.png"
    },
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "scripts/contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/*",
        "popup/*"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ]
    }
  ]
}