YouTube Background Ad Skip Extension

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

Co je YouTube Background Ad Skip Extension?

YouTube Background Ad Skip Extension je rozšíření Chrome vyvinuté Krysp_Coder, a jeho hlavní funkcí je „Automatically Skip ads on YouTube. This is not an ad blocker“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouTube Background Ad Skip Extension

Stáhněte si soubory rozšíření YouTube Background Ad Skip Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
Oficiální URL https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Popis Automatically Skip ads on YouTube. This is not an ad blocker
Velikost souboru 17.34 KB
Počet instalací 867
Aktuální Verze 0.1.1
Poslední Aktualizace 2018-06-20
Datum Vydání 2018-06-20
Hodnocení 3.33/5 Celkem 3 Hodnocení
Vývojář Krysp_Coder
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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*"
            ]
        }
    ]
}