Adblocker for Hulu

blocks ad on hulu & youtube ads

Co to jest Adblocker for Hulu?

Adblocker for Hulu to rozszerzenie Chrome opracowane przez Hulu Adblocker, a jego główną funkcją jest „blocks ad on hulu & youtube ads”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Adblocker for Hulu

Pobierz pliki rozszerzeń Adblocker for Hulu 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

                        Are you annoyed with ads while you're watching your favorite shows on Hulu? Look no further than Hulu AdBlocker! This extension blocks all ads on Hulu, so you can watch the content without interruptions. 

Key Features: 

>>Block all ads on Hulu, including commercials and sponsored content 

>>Works with all versions of Hulu, including the web player and desktop app 

>>Easy to use and install 

>>No more waiting through ads to get back to your show 

 

How to Use: 

 >>Download and install the Hulu AdBlocker extension by clicking on the “Add to Chrome” 

>>Open up Hulu in your browser  

>>Start watching your favorite show and enjoy an ad-free experience!                    

Podstawowe informacje o rozszerzeniu

Nazwa Adblocker for Hulu Adblocker for Hulu
ID lifdjpakmphebiefoaocffibmmiebdbh
Oficjalny URL https://chromewebstore.google.com/detail/adblocker-for-hulu/lifdjpakmphebiefoaocffibmmiebdbh
Opis blocks ad on hulu & youtube ads
Rozmiar pliku 77.77 KB
Liczba instalacji 39
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-06-05
Data Publikacji 2023-06-04
Deweloper Hulu Adblocker
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Adblocker for Hulu",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "blocks ad on hulu & youtube ads",
    "permissions": [
        "storage",
        "notifications",
        "declarativeNetRequest",
        "declarativeNetRequestWithHostAccess",
        "declarativeNetRequestFeedback"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": true,
                "path": "blockingRules.json"
            }
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "js": [
                "content.js",
                "hulu.min.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.hulu.com\/*"
            ]
        },
        {
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "onInstalled.js"
    }
}