HTML Content Blocker
Blocks desired HTML contents (script, style, image, object, media)
HTML Content Blocker là gì?
HTML Content Blocker là một tiện ích mở rộng Chrome được phát triển bởi Benni, và tính năng chính của nó là "Blocks desired HTML contents (script, style, image, object, media)".
Ả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 HTML Content Blocker
Tải xuống các tệp mở rộng HTML Content Blocker 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
HTML Content Blocker provides an easy interface to quickly block various HTML contents (JS, CSS, IMG, OBJ, etc.) on any webpage. To operate, simply open the toolbar and click on the desired icon. Key features: 1. Enables you to block desired HTML contents. 2. Currently, there are five items available to choose from (script, style, image, object, media) 3. To deactivate an operation, simply unmark the related item from toolbar popup. 4. Badge icon text shows the number of blocked items within each tab (changing the tab will update the badge number). To report bugs, please visit the addon's homepage (https://mybrowseraddon.com/html-content-blocker.html) and fill the bug report form.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | HTML Content Blocker |
ID | nobnkgabkebhhlgfddbemmefjnjnahoe |
URL Chính Thức | https://chromewebstore.google.com/detail/html-content-blocker/nobnkgabkebhhlgfddbemmefjnjnahoe |
Mô tả | Blocks desired HTML contents (script, style, image, object, media) |
Kích Thước Tệp | 32.78 KB |
Số Lần Cài Đặt | 5,381 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2023-03-14 |
Ngày Phát Hành | 2020-06-16 |
Đánh Giá | 3.79/5 Tổng số 75 Đánh Giá |
Nhà Phát Triển | Benni |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://mybrowseraddon.com/html-content-blocker.html |
URL Trang Trợ Giúp | https://mybrowseraddon.com/html-content-blocker.html |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.2.1", "manifest_version": 3, "name": "HTML Content Blocker", "host_permissions": [ "*:\/\/*\/*" ], "permissions": [ "storage", "declarativeNetRequest" ], "homepage_url": "https:\/\/mybrowseraddon.com\/html-content-blocker.html", "description": "Blocks desired HTML contents (script, style, image, object, media)", "background": { "service_worker": "background.js" }, "action": { "default_title": "HTML Content Blocker", "default_popup": "data\/popup\/popup.html", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |