Spotify Ad Auto-Muter

Spotify Ad Auto-Muter

Automatically mute audio ads and skip subscription reminders.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "57.0",
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [],
      "include_globs": [
        "*open.spotify.com*"
      ],
      "js": [
        "includes/jquery-3.7.1.min.js",
        "includes/jquery.hotkeys.js",
        "includes/spotify.js"
      ],
      "matches": [
        "*://open.spotify.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Automatically mute audio ads.",
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "name": "Spotify Ad Auto-Muter",
  "short_name": "Spotify Ad Auto-Muter",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "version": "0.1.10",
  "web_accessible_resources": [
    "includes/jquery-3.7.1.min.js",
    "includes/jquery.hotkeys.js",
    "includes/spotify.js",
    "jquery-3.7.1.min.map"
  ]
}