SpotiBlock | Ad Blocker for Spotify

SpotiBlock | Ad Blocker for Spotify

Removes and block any audio ads from Spotify.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.0.0",
  "icons": {
    "64": "assets/64.png",
    "128": "assets/128.png",
    "256": "assets/256.png"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "javascripts/content.js",
        "javascripts/dumb.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "adi.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "extension_ids": [
        "*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "64": "assets/64.png",
      "128": "assets/128.png",
      "256": "assets/256.png"
    },
    "default_title": "Adblock for Spotify"
  },
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "background"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1a",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "commands": {
    "open_spotify": {
      "suggested_key": {
        "default": "Alt+S",
        "windows": "Alt+S",
        "mac": "Alt+S",
        "chromeos": "Alt+S",
        "linux": "Alt+S"
      },
      "description": "Press Alt + S to open Spotify"
    }
  },
  "host_permissions": [
    "*://open.spotify.com/*"
  ],
  "optional_host_permissions": [
    "*://*.spotify.com/*"
  ],
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}