YouTube Skip Ads

YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'

Τι είναι το YouTube Skip Ads;

Το YouTube Skip Ads είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον admin, και η κύρια λειτουργία του είναι "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".

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

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Skip Ads

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

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

                        YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'                    

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

Όνομα YouTube Skip Ads YouTube Skip Ads
ID jnhhfkebfgdllkmohmfhdmhkfooolbmb
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb
Περιγραφή YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
Μέγεθος Αρχείου 12.73 KB
Αριθμός Εγκαταστάσεων 3,053
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2022-10-31
Ημερομηνία Δημοσίευσης 2022-10-31
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής admin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Skip Ads",
    "short_name": "YouTube Skip Ads",
    "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'",
    "manifest_version": 3,
    "version": "1.0.6",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_yt.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "logob.png"
    }
}