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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ 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"
            ]
        }
    ]
}