YouTube Background Ad Skip Extension

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

Vad är YouTube Background Ad Skip Extension?

YouTube Background Ad Skip Extension är en Chrome-tillägg utvecklad av Krysp_Coder, och dess huvudfunktion är "Automatically Skip ads on YouTube. This is not an ad blocker".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Background Ad Skip Extension-förlängningens CRX-fil

Ladda ner YouTube Background Ad Skip Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
Officiell webbadress https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Beskrivning Automatically Skip ads on YouTube. This is not an ad blocker
Filstorlek 17.34 KB
Antal Installationer 867
Aktuell Version 0.1.1
Senast Uppdaterad 2018-06-20
Publiceringsdatum 2018-06-20
Betyg 3.33/5 Totalt 3 Betyg
Utvecklare Krysp_Coder
E-post [email protected]
Betalningssätt free
Stödda Språk 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*"
            ]
        }
    ]
}