Spotify Ad Blocker | SpotiSkip

Spotify Ad Blocker | SpotiSkip

Enhance Your Spotify Experience With SpotiSkip – The Ultimate Spotify Ad Blocker Extension. Say Goodbye To Interruptions On Spotify!

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_name__",
  "description": "__MSG_description__",
  "version": "0.0.2",
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en",
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_icon": {
      "128": "img/128.png"
    },
    "default_title": "__MSG_name__"
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "content/contentScript.js",
        "content/checkStoped.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/contentScript.js",
        "scripts/checkStoped.js",
        "scripts/adsRemoval.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ]
    }
  ]
}