Youtube Ad Muter

Mutes ads while still supporting your favourite YouTubers

Cos'è Youtube Ad Muter?

Youtube Ad Muter è un'estensione di Chrome sviluppata da nopynospy, e la sua funzione principale è "Mutes ads while still supporting your favourite YouTubers".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Youtube Ad Muter

Scarica i file di estensione Youtube Ad Muter 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

                        In content script, use mutation observer to detect when ad is playing on YouTube. Then, set videos to muted.                    

Informazioni di Base sull'Estensione

Nome Youtube Ad Muter Youtube Ad Muter
ID kpaapfjgeapgppbkcgnogpdadofkeobc
URL Ufficiale https://chromewebstore.google.com/detail/youtube-ad-muter/kpaapfjgeapgppbkcgnogpdadofkeobc
Descrizione Mutes ads while still supporting your favourite YouTubers
Dimensione del File 88.41 KB
Conteggio Installazioni 489
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-06-18
Data di Pubblicazione 2023-06-18
Valutazione 4.50/5 Totale 4 Valutazioni
Sviluppatore nopynospy
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nopynospy/youtube_ad_muter
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Ad Muter",
    "description": "Mutes ads while still supporting your favourite YouTubers",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "Youtube Ad Muter",
        "default_icon": "icon.png"
    },
    "permissions": [],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}