Spotify Mute Ads

Spotify Mute Ads

Mutes audio ads on Spotify.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spotify Mute Ads",
  "version": "13.7.3",
  "description": "Mutes audio ads on Spotify.",
  "permissions": [
    "storage",
    "tabs"
  ],
  "minimum_chrome_version": "55",
  "default_icon": {
    "16": "images/NewLogo16.png",
    "48": "images/NewLogo48.png",
    "128": "images/NewLogo128.png"
  },
  "icons": {
    "16": "images/NewLogo16.png",
    "48": "images/NewLogo48.png",
    "128": "images/NewLogo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://open.spotify.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2
}