Spotify Ad Muter

Spotify Ad Muter

This chrome extension automatically detects and mutes sound when an advertisement is played on Spotify. It allows users to enjoy…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spotify Ad Muter",
  "description": "",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-34.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/logo-48.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.chunk-35e52db2.33adfa2d.js"
      ],
      "matches": [
        "https://open.spotify.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "img/logo-16.png",
        "img/logo-34.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "resources": [
        "assets/chunk-35e52db2.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "https://open.spotify.com/*"
  ]
}