Spotify Ad Blocker - Blockify

Spotify Ad Blocker - Blockify

Blockify is a Spotify Ad Blocker that blocks & removes audio ads from Spotify using Spotify adblock technology.

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 Blocker - Blockify",
  "short_name": "Spotify Ad Blocker",
  "description": "Blockify is a Spotify Ad Blocker that blocks & removes audio ads from Spotify using Spotify adblock technology.",
  "homepage_url": "https://getblockify.com",
  "version": "1.5.7",
  "icons": {
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png",
    "256": "images/256.png"
  },
  "author": "Spotify Ad Blocker | Blockify",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "content_script.js",
        "mute.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": {
      "32": "images/32.png",
      "48": "images/48.png",
      "64": "images/64.png",
      "128": "images/128.png",
      "256": "images/256.png"
    },
    "default_title": "Blockify: Spotify Ad Blocker [Alt + S]"
  },
  "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
}