Adblock for Spotify - Skip ads on music

Adblock for Spotify - Skip ads on music

Adblock that removes and block any audio ads from Spotify. Automatically mute audio ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "version": "1.0.2",
  "icons": {
    "128": "icon128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en",
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_icon": {
      "64": "assets/logo64.png",
      "128": "assets/logo128.png"
    },
    "default_title": "Spotify™ Ad Blocker"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; connect-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://open.spotify.com/;",
    "sandbox": "sandbox allow-scripts;"
  },
  "background": {
    "service_worker": "serviceworker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "content/javascripts.js",
        "pause-rew.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/javascripts.js",
        "pause-rew.js",
        "blocker-ads.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}