Spotify Ad Auto-Muter

Automatically mute audio ads.

Was ist Spotify Ad Auto-Muter?

Spotify Ad Auto-Muter ist eine Chrome-Erweiterung, die von Zion Developers entwickelt wurde, und ihr Hauptmerkmal ist "Automatically mute audio ads.".

Erweiterungsscreenshots

screenshot

Spotify Ad Auto-Muter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Spotify Ad Auto-Muter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is NOT an Ad Blocker, It mute ads.
Support Spotify by disabling AdBlock / uBlock on open.spotify.com and use this extension to automatically mute audio ads.

Feature: Automatically mute audio ads (Changeable on Options).
Feature: Disable / Enable the extension by pressing F2 (Changeable on Options).
More features to be developed soon.

This is not a Spotify official extension.

Open Source: https://github.com/ziondevelopers/spotify-ad-auto-muter
License: https://creativecommons.org/licenses/by-nc-sa/4.0/                    

Grundlegende Informationen zur Erweiterung

Name Spotify Ad Auto-Muter Spotify Ad Auto-Muter
ID hhlhelmnhcmphakjipgkbcjkfpkdnaag
Offizielle URL https://chromewebstore.google.com/detail/spotify-ad-auto-muter/hhlhelmnhcmphakjipgkbcjkfpkdnaag
Beschreibung Automatically mute audio ads.
Dateigröße 100 KB
Installationsanzahl 579
Aktuelle Version 0.1.10
Letztes Update 2024-01-07
Veröffentlichungsdatum 2022-10-25
Bewertung 3.67/5 Insgesamt 6 Bewertungen
Entwickler Zion Developers
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ziondevelopers/spotify-ad-auto-muter
Hilfeseite URL https://github.com/ZionDevelopers/spotify-ad-auto-muter/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "exclude_globs": [],
            "include_globs": [
                "*open.spotify.com*"
            ],
            "css": [],
            "js": [
                "includes\/jquery-3.7.1.min.js",
                "includes\/spotify.js",
                "includes\/jquery.hotkeys.js"
            ],
            "matches": [
                "*:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Automatically mute audio ads.",
    "icons": {
        "128": "icons\/icon.png"
    },
    "manifest_version": 3,
    "name": "Spotify Ad Auto-Muter",
    "short_name": "Spotify Ad Auto-Muter",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "version": "0.1.10",
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/open.spotify.com\/*"
            ],
            "resources": [
                "icons\/icon.png",
                "includes\/jquery-3.7.1.min.js",
                "includes\/spotify.js",
                "includes\/jquery-3.7.1.min.map",
                "includes\/jquery.hotkeys.js"
            ]
        }
    ]
}