Hulu adblocker

Eliminate interruptions, enjoy hulu movies and shows ad-free

Was ist Hulu adblocker?

Hulu adblocker ist eine Chrome-Erweiterung, die von Even Extensions entwickelt wurde, und ihr Hauptmerkmal ist "Eliminate interruptions, enjoy hulu movies and shows ad-free".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Hulu adblocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hulu adblocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Hulu adblocker 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.                    

Grundlegende Informationen zur Erweiterung

Name Hulu adblocker Hulu adblocker
ID pkijkmidgjanbkpfbpdoibadpdkpcchk
Offizielle URL https://chromewebstore.google.com/detail/hulu-adblocker/pkijkmidgjanbkpfbpdoibadpdkpcchk
Beschreibung Eliminate interruptions, enjoy hulu movies and shows ad-free
Dateigröße 143 KB
Installationsanzahl 334
Aktuelle Version 1.0.0
Letztes Update 2023-10-03
Veröffentlichungsdatum 2023-10-03
Bewertung 5.00/5 Insgesamt 25 Bewertungen
Entwickler Even Extensions
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.huluadblocker.net/
Hilfeseite URL https://www.huluadblocker.net/support
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hulu adblocker",
    "description": "Eliminate interruptions, enjoy hulu movies and shows ad-free ",
    "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 adblocker",
        "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"
            ]
        }
    ]
}