Spotify Ad Blocker

Spotify Ad Blocker

Block All Ads on Spotify™ Web Player And Enjoy Music With No Interruptions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.0",
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "img/16.png",
      "32": "img/32.png",
      "48": "img/48.png",
      "128": "img/128.png"
    },
    "default_title": "__MSG_name__"
  },
  "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": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "scripts/contentScript.js",
        "scripts/checkStoped.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/contentScript.js",
        "scripts/checkStoped.js",
        "scripts/adsRemoval.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}