Hulu adblocker

Eliminate interruptions, enjoy hulu movies and shows ad-free

ما هو Hulu adblocker؟

Hulu adblocker هو إضافة Chrome تم تطويرها بواسطة Even Extensions، والميزة الرئيسية لها هي "Eliminate interruptions, enjoy hulu movies and shows ad-free".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Hulu adblocker

قم بتنزيل ملفات الامتداد Hulu adblocker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Hulu adblocker Hulu adblocker
ID pkijkmidgjanbkpfbpdoibadpdkpcchk
عنوان URL الرسمي https://chromewebstore.google.com/detail/hulu-adblocker/pkijkmidgjanbkpfbpdoibadpdkpcchk
الوصف Eliminate interruptions, enjoy hulu movies and shows ad-free
حجم الملف 143 KB
عدد التثبيتات 334
النسخة الحالية 1.0.0
آخر تحديث 2023-10-03
تاريخ النشر 2023-10-03
تقييم 5.00/5 مجموع تقييمات 25
المطور Even Extensions
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.huluadblocker.net/
عنوان صفحة المساعدة https://www.huluadblocker.net/support
اللغات المدعومة 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"
            ]
        }
    ]
}