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.
擴展基本資訊
名稱 | Censor Words |
ID | ggodicnebnbfhcmhepkcmjoahboalhpl |
官方網址 | 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 |
電子郵箱 | [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" } ] } |