UTube Ad Skipper

This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for…

Τι είναι το UTube Ad Skipper;

Το UTube Ad Skipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον pradiptosensarma, και η κύρια λειτουργία του είναι "This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης UTube Ad Skipper

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

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

                        This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for FREE.

WHY USE THIS EXTENSION?
1.It's Free of cost.
2.No sign up is required.
3.Enjoy Ad free YouTube.                    

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

Όνομα UTube Ad Skipper UTube Ad Skipper
ID dkjmpcpfphjeepabikjggndlllhnejkf
Επίσημο URL https://chromewebstore.google.com/detail/utube-ad-skipper/dkjmpcpfphjeepabikjggndlllhnejkf
Περιγραφή This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for…
Μέγεθος Αρχείου 2.47 MB
Αριθμός Εγκαταστάσεων 351
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2023-07-26
Ημερομηνία Δημοσίευσης 2023-03-01
Προγραμματιστής pradiptosensarma
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UTube Ad Skipper",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "16": "images\/utubeadskipper.png",
        "48": "images\/utubeadskipper.png",
        "128": "images\/utubeadskipper.png"
    },
    "background": {
        "service_worker": "js\/pop.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "watchscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules_1.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pop.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_popup": "button.html",
        "default_title": "UTubeAdSkipper",
        "default_icon": "images\/utubeadskipper.png"
    }
}