YouTube Skip Ads

YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'

Cos'è YouTube Skip Ads?

YouTube Skip Ads è un'estensione di Chrome sviluppata da admin, e la sua funzione principale è "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Skip Ads

Scarica i file di estensione YouTube Skip Ads 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

                        YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'                    

Informazioni di Base sull'Estensione

Nome YouTube Skip Ads YouTube Skip Ads
ID jnhhfkebfgdllkmohmfhdmhkfooolbmb
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb
Descrizione YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
Dimensione del File 12.73 KB
Conteggio Installazioni 3,053
Versione Corrente 1.0.6
Ultimo Aggiornamento 2022-10-31
Data di Pubblicazione 2022-10-31
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore admin
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Skip Ads",
    "short_name": "YouTube Skip Ads",
    "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'",
    "manifest_version": 3,
    "version": "1.0.6",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_yt.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "logob.png"
    }
}