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…

Co to jest UTube Ad Skipper?

UTube Ad Skipper to rozszerzenie Chrome opracowane przez pradiptosensarma, a jego główną funkcją jest „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…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia UTube Ad Skipper

Pobierz pliki rozszerzeń UTube Ad Skipper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa UTube Ad Skipper UTube Ad Skipper
ID dkjmpcpfphjeepabikjggndlllhnejkf
Oficjalny URL https://chromewebstore.google.com/detail/utube-ad-skipper/dkjmpcpfphjeepabikjggndlllhnejkf
Opis 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…
Rozmiar pliku 2.47 MB
Liczba instalacji 351
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-07-26
Data Publikacji 2023-03-01
Deweloper pradiptosensarma
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}