Word Blocker
Blocks passages on webpages that include a word the user has muted.
什么是Word Blocker?
Word Blocker是由pyran开发的Chrome扩展程序,该扩展的主要功能是“Blocks passages on webpages that include a word the user has muted.”。
扩展截图
下载Word Blocker扩展crx文件
下载Word Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
官方URL | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
简介 | Blocks passages on webpages that include a word the user has muted. |
文件大小 | 33.34 KB |
安装次数 | 852 |
当前版本 | 0.1.0 |
更新时间 | 2021-01-18 |
上架时间 | 2021-01-18 |
评分 | 3.08/5 共12次评分 |
开发者 | pyran |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |