Spotify Ad Auto-Muter

Automatically mute audio ads.

Co je Spotify Ad Auto-Muter?

Spotify Ad Auto-Muter je rozšíření Chrome vyvinuté Zion Developers, a jeho hlavní funkcí je „Automatically mute audio ads.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Spotify Ad Auto-Muter

Stáhněte si soubory rozšíření Spotify Ad Auto-Muter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Spotify Ad Auto-Muter Spotify Ad Auto-Muter
ID hhlhelmnhcmphakjipgkbcjkfpkdnaag
Oficiální URL https://chromewebstore.google.com/detail/spotify-ad-auto-muter/hhlhelmnhcmphakjipgkbcjkfpkdnaag
Popis Automatically mute audio ads.
Velikost souboru 100 KB
Počet instalací 579
Aktuální Verze 0.1.10
Poslední Aktualizace 2024-01-07
Datum Vydání 2022-10-25
Hodnocení 3.67/5 Celkem 6 Hodnocení
Vývojář Zion Developers
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ziondevelopers/spotify-ad-auto-muter
URL Stránky Nápovědy https://github.com/ZionDevelopers/spotify-ad-auto-muter/issues
Podporované Jazyky 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"
            ]
        }
    ]
}