Word Blocker
Blocks passages on webpages that include a word the user has muted.
Word Blocker là gì?
Word Blocker là một tiện ích mở rộng Chrome được phát triển bởi pyran, và tính năng chính của nó là "Blocks passages on webpages that include a word the user has muted.".
Ả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 Word Blocker
Tải xuống các tệp mở rộng Word 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
Enter words in the popup, and it will be censored with asterisks. This extension will soon be able to be used for blocking triggers or avoiding spoilers.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
URL Chính Thức | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Mô tả | Blocks passages on webpages that include a word the user has muted. |
Kích Thước Tệp | 33.34 KB |
Số Lần Cài Đặt | 852 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2021-01-18 |
Ngày Phát Hành | 2021-01-18 |
Đánh Giá | 3.08/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | pyran |
pyran@googlegroups.com | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Word Blocker", "description": "Blocks passages on webpages that include a word the user has muted.", "version": "0.1.0", "manifest_version": 2, "icons": { "128": ".\/monkey_icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "options_page": ".\/options.html", "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |