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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |