Hulu adblocker
Eliminate interruptions, enjoy hulu movies and shows ad-free
Hulu adblocker là gì?
Hulu adblocker là một tiện ích mở rộng Chrome được phát triển bởi Even Extensions, và tính năng chính của nó là "Eliminate interruptions, enjoy hulu movies and shows ad-free".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hulu adblocker
Tải xuống các tệp mở rộng Hulu adblocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hulu adblocker |
ID | pkijkmidgjanbkpfbpdoibadpdkpcchk |
URL Chính Thức | https://chromewebstore.google.com/detail/hulu-adblocker/pkijkmidgjanbkpfbpdoibadpdkpcchk |
Mô tả | Eliminate interruptions, enjoy hulu movies and shows ad-free |
Kích Thước Tệp | 143 KB |
Số Lần Cài Đặt | 334 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-10-03 |
Ngày Phát Hành | 2023-10-03 |
Đánh Giá | 5.00/5 Tổng số 25 Đánh Giá |
Nhà Phát Triển | Even Extensions |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.huluadblocker.net/ |
URL Trang Trợ Giúp | https://www.huluadblocker.net/support |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |