AdMute

Mutes ads on YouTube

Cos'è AdMute?

AdMute è un'estensione di Chrome sviluppata da dev.jerrywu, e la sua funzione principale è "Mutes ads on YouTube".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AdMute

Scarica i file di estensione AdMute 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

                        This extension automatically mutes the tab when an ads starts playing on YouTube.

If you're tired of loud, annoying ads, but still want to support YouTube creators, installing this will help alleviate your auditory trauma!                    

Informazioni di Base sull'Estensione

Nome AdMute AdMute
ID lphpiojcgblffagolamjknonieggkela
URL Ufficiale https://chromewebstore.google.com/detail/admute/lphpiojcgblffagolamjknonieggkela
Descrizione Mutes ads on YouTube
Dimensione del File 16.3 KB
Conteggio Installazioni 90
Versione Corrente 0.0.2
Ultimo Aggiornamento 2023-02-18
Data di Pubblicazione 2023-02-11
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore dev.jerrywu
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AdMute",
    "description": "Mutes ads on YouTube",
    "version": "0.0.2",
    "author": "Jerry Wu",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "libs\/arrive.min.js",
                "youtube.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "icons": {
        "16": "icons\/enabled\/icon16.png",
        "48": "icons\/enabled\/icon48.png",
        "128": "icons\/enabled\/icon128.png"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ]
}