Video ads skipper

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

Τι είναι το Video ads skipper;

Το Video ads skipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον admin, και η κύρια λειτουργία του είναι "Save time while browsing the internet and get rid of tiresome ads!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Video ads skipper

Λήψη αρχείων επέκτασης Video ads skipper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Video ads skipper Video ads skipper
ID gdoohnigblfkgnoidfndpghlohkanpfd
Επίσημο URL https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd
Περιγραφή Save time while browsing the internet and get rid of tiresome ads!
Μέγεθος Αρχείου 55.48 KB
Αριθμός Εγκαταστάσεων 631
Τρέχουσα Έκδοση 2.2.2
Τελευταία Ενημέρωση 2022-11-08
Ημερομηνία Δημοσίευσης 2022-11-08
Προγραμματιστής admin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}