YouTube Background Ad Skip Extension

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

Was ist YouTube Background Ad Skip Extension?

YouTube Background Ad Skip Extension ist eine Chrome-Erweiterung, die von Krysp_Coder entwickelt wurde, und ihr Hauptmerkmal ist "Automatically Skip ads on YouTube. This is not an ad blocker".

Erweiterungsscreenshots

screenshot

YouTube Background Ad Skip Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Background Ad Skip Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
Offizielle URL https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Beschreibung Automatically Skip ads on YouTube. This is not an ad blocker
Dateigröße 17.34 KB
Installationsanzahl 867
Aktuelle Version 0.1.1
Letztes Update 2018-06-20
Veröffentlichungsdatum 2018-06-20
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler Krysp_Coder
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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*"
            ]
        }
    ]
}