Censor Words
This extension will censor the input bad words.
Censor Wordsとは何ですか?
Censor WordsはBuzen Technologiesによって開発されたChromeの拡張機能で、その主な機能は「This extension will censor the input bad words.」です。
拡張機能のスクリーンショット
Censor Words拡張機能のCRXファイルをダウンロード
Censor Words拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will censor bad words. This is especially useful for parents to control what their kids read when browsing online websites. 拡張機能の基本情報
| 名前 | |
| ID | ggodicnebnbfhcmhepkcmjoahboalhpl |
| 公式URL | https://chromewebstore.google.com/detail/censor-words/ggodicnebnbfhcmhepkcmjoahboalhpl |
| 説明 | This extension will censor the input bad words. |
| ファイルサイズ | 46.63 KB |
| インストール数 | 15 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2022-05-24 |
| 公開日 | 2022-05-21 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Buzen Technologies |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://buzentechnologies.com |
| ヘルプページのURL | https://buzentechnologies.com/ |
| プライバシーポリシーページのURL | https://buzentechnologies.com/privacy |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Censor Words",
"description": "This extension will censor the input bad words.",
"version": "1.1",
"icons": {
"16": "\/icons\/icon-16.png",
"32": "\/icons\/icon-32.png",
"48": "\/icons\/icon-48.png",
"128": "\/icons\/icon-128.png"
},
"action": {
"default_title": "Censor Words",
"default_popup": "popup.html",
"default_icon": {
"16": "\/icons\/icon-16.png",
"24": "\/icons\/icon-24.png",
"32": "\/icons\/icon-32.png"
}
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
} | |