YouTube NoAds!

The add-on blocks ads presented in videos on youtube.

Cos'è YouTube NoAds!?

YouTube NoAds! è un'estensione di Chrome sviluppata da info, e la sua funzione principale è "The add-on blocks ads presented in videos on youtube.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube NoAds!

Scarica i file di estensione YouTube NoAds! 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

                        The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.                    

Informazioni di Base sull'Estensione

Nome YouTube NoAds! YouTube NoAds!
ID plohhfnpbopkgjhbaljjepioomefkaog
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog
Descrizione The add-on blocks ads presented in videos on youtube.
Dimensione del File 166 KB
Conteggio Installazioni 761
Versione Corrente 2.0.0
Ultimo Aggiornamento 2022-11-30
Data di Pubblicazione 2022-11-30
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore info
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube NoAds!",
    "description": "The add-on blocks ads presented in videos on youtube.",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/youtube(3).png"
    }
}