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 |
官方網址 | 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" ] } |