Hulu AD Skipper - Hulu AdBlock

Skip ads on Hulu

Cos'è Hulu AD Skipper - Hulu AdBlock?

Hulu AD Skipper - Hulu AdBlock è un'estensione di Chrome sviluppata da Teleparty Extension, e la sua funzione principale è "Skip ads on Hulu".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Hulu AD Skipper - Hulu AdBlock

Scarica i file di estensione Hulu AD Skipper - Hulu AdBlock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Hulu AD Skipper  enhances the streaming experience on Hulu by seamlessly fast-forwarding through ads, saving users valuable time during their content consumption. Additionally, it provides an ad-free browsing experience by effectively blocking annoying popup ads on various websites, allowing users to enjoy uninterrupted browsing sessions. Say goodbye to ad interruptions and enjoy seamless content streaming and web browsing with this all-in-one extension                    

Informazioni di Base sull'Estensione

Nome Hulu AD Skipper - Hulu AdBlock Hulu AD Skipper - Hulu AdBlock
ID anhgjmaaemikgbjmepfhljpldddlendl
URL Ufficiale https://chromewebstore.google.com/detail/hulu-ad-skipper-hulu-adbl/anhgjmaaemikgbjmepfhljpldddlendl
Descrizione Skip ads on Hulu
Dimensione del File 146 KB
Conteggio Installazioni 48
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-12-25
Data di Pubblicazione 2023-12-25
Sviluppatore Teleparty Extension
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hulu AD Skipper - Hulu AdBlock",
    "description": "Skip ads on Hulu ",
    "version": "1.0.0",
    "manifest_version": 3,
    "icons": {
        "16": "hulu16x16.png",
        "48": "hulu48x48.png",
        "128": "hulu128x128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Hulu AD Skipper - Hulu AdBlock",
        "default_icon": "hulu16x16.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.hulu.com\/*"
            ],
            "js": [
                "hulu.js"
            ]
        }
    ]
}