Video ads skipper

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

Vad är Video ads skipper?

Video ads skipper är en Chrome-tillägg utvecklad av admin, och dess huvudfunktion är "Save time while browsing the internet and get rid of tiresome ads!".

Tilläggsskärmbilder

screenshot

Ladda ner Video ads skipper-förlängningens CRX-fil

Ladda ner Video ads skipper-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

                        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!                    

Grundläggande Information om Tillägg

Namn Video ads skipper Video ads skipper
ID gdoohnigblfkgnoidfndpghlohkanpfd
Officiell webbadress https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd
Beskrivning Save time while browsing the internet and get rid of tiresome ads!
Filstorlek 55.48 KB
Antal Installationer 631
Aktuell Version 2.2.2
Senast Uppdaterad 2022-11-08
Publiceringsdatum 2022-11-08
Utvecklare admin
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}