Adblocker for Hulu

blocks ad on hulu & youtube ads

什麼是Adblocker for Hulu?

Adblocker for Hulu是由Hulu Adblocker開發的Chrome擴展程式,該擴展的主要功能是“blocks ad on hulu & youtube ads”。

擴展截圖

screenshot

下載Adblocker for Hulu擴展crx文件

下載Adblocker for Hulu擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Adblocker for Hulu Adblocker for Hulu
ID lifdjpakmphebiefoaocffibmmiebdbh
官方網址 https://chromewebstore.google.com/detail/adblocker-for-hulu/lifdjpakmphebiefoaocffibmmiebdbh
簡介 blocks ad on hulu & youtube ads
檔案大小 77.77 KB
安裝次數 39
目前版本 1.0.0
更新時間 2023-06-05
上架時間 2023-06-04
開發者 Hulu Adblocker
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}