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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}