Twitch MuteAds

Mute Ads on Twitch

Cos'è Twitch MuteAds?

Twitch MuteAds è un'estensione di Chrome sviluppata da spddl, e la sua funzione principale è "Mute Ads on Twitch".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Twitch MuteAds

Scarica i file di estensione Twitch MuteAds in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Mutes advertisements on Twitch and reactivates them after the advertisement.                    

Informazioni di Base sull'Estensione

Nome Twitch MuteAds Twitch MuteAds
ID jpcjejphfbpbnjahcnfgcjjodoopgdgb
URL Ufficiale https://chromewebstore.google.com/detail/twitch-muteads/jpcjejphfbpbnjahcnfgcjjodoopgdgb
Descrizione Mute Ads on Twitch
Dimensione del File 10.13 KB
Conteggio Installazioni 44
Versione Corrente 0.0.3
Ultimo Aggiornamento 2021-01-26
Data di Pubblicazione 2020-12-12
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore spddl
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/spddl/Twitch-MuteAds
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch MuteAds",
    "description": "Mute Ads on Twitch",
    "version": "0.0.3",
    "icons": {
        "48": "volume_off_googred500_48x48.png",
        "128": "volume_off_googred500_108x108.png",
        "256": "volume_off_googred500_144x144.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "action": {
        "default_title": "Twitch MuteAds",
        "default_icon": {
            "48": "volume_off_googred500_48x48.png",
            "128": "volume_off_googred500_108x108.png",
            "256": "volume_off_googred500_144x144.png"
        }
    }
}