Video ads skipper

Save time while browsing the internet and get rid of tiresome ads!

Co je Video ads skipper?

Video ads skipper je rozšíření Chrome vyvinuté admin, a jeho hlavní funkcí je „Save time while browsing the internet and get rid of tiresome ads!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Video ads skipper

Stáhněte si soubory rozšíření Video ads skipper 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í

                        The add-on allows you to skip ads while browsing youtube. After the first 5 seconds the ad will be skipped and you can enjoy your favorite movie 
or music clip. Don't waste time on unnecessary ads, focus on the content, use the saved time for yourself!                    

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

Název Video ads skipper Video ads skipper
ID gdoohnigblfkgnoidfndpghlohkanpfd
Oficiální URL https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd
Popis Save time while browsing the internet and get rid of tiresome ads!
Velikost souboru 55.48 KB
Počet instalací 631
Aktuální Verze 2.2.2
Poslední Aktualizace 2022-11-08
Datum Vydání 2022-11-08
Vývojář admin
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video ads skipper",
    "short_name": "Video ads skipper",
    "description": "Save time while browsing the internet and get rid of tiresome ads!",
    "manifest_version": 3,
    "version": "2.2.2",
    "background": {
        "service_worker": "source\/worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "source\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "source\/content_yt.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/logo128.png"
    }
}