Examine source code of Adblock for Spotify - Skip ads on music

Inspect and view changes in Adblock for Spotify - Skip ads on music source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDesc__",
  "default_locale": "en",
  "version": "1.0.9",
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "background",
    "system.display"
  ],
  "short_name": "Spotify Ad Blocker",
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "content_script.js",
        "mute.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "adi.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "action": {
    "default_popup": "layouts/popup.html",
    "default_icon": "/logos/logo128.png"
  },
  "commands": {
    "open_spotify": {
      "description": "Press Alt + S to open Spotify",
      "suggested_key": {
        "chromeos": "Alt+S",
        "default": "Alt+S",
        "linux": "Alt+S",
        "mac": "Alt+S",
        "windows": "Alt+S"
      }
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "ruleset_1a",
        "path": "rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "extension_ids": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "64": "/logos/logo64.png",
    "128": "/logos/logo128.png"
  }
}