YouTube Background Ad Skip Extension

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

Qu'est-ce que YouTube Background Ad Skip Extension ?

YouTube Background Ad Skip Extension est une extension Chrome développée par Krysp_Coder, et sa fonction principale est "Automatically Skip ads on YouTube. This is not an ad blocker".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Background Ad Skip Extension

Téléchargez les fichiers d'extension YouTube Background Ad Skip Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
URL Officiel https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Description Automatically Skip ads on YouTube. This is not an ad blocker
Taille du Fichier 17.34 KB
Nombre d'Installations 867
Version Actuelle 0.1.1
Dernière Mise à Jour 2018-06-20
Date de Publication 2018-06-20
Évaluation 3.33/5 Total 3 Évaluations
Développeur Krysp_Coder
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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*"
            ]
        }
    ]
}