YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

Cos'è YouTube Background Ad Skip Extension?

YouTube Background Ad Skip Extension è un'estensione di Chrome sviluppata da Krysp_Coder, e la sua funzione principale è "Automatically Skip ads on YouTube. This is not an ad blocker".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Background Ad Skip Extension

Scarica i file di estensione YouTube Background Ad Skip Extension 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

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

Informazioni di Base sull'Estensione

Nome YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
URL Ufficiale https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Descrizione Automatically Skip ads on YouTube. This is not an ad blocker
Dimensione del File 17.34 KB
Conteggio Installazioni 867
Versione Corrente 0.1.1
Ultimo Aggiornamento 2018-06-20
Data di Pubblicazione 2018-06-20
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore Krysp_Coder
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}