Hulu adblocker

Eliminate interruptions, enjoy hulu movies and shows ad-free

什么是Hulu adblocker?

Hulu adblocker是由Even Extensions开发的Chrome扩展程序,该扩展的主要功能是“Eliminate interruptions, enjoy hulu movies and shows ad-free”。

扩展截图

screenshot
screenshot
screenshot

下载Hulu adblocker扩展crx文件

下载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"
            ]
        }
    ]
}