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 |
官方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 |
电子邮箱 | [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" } ] } |