Safe Words

Takes out bad words from all your webpages

什么是Safe Words?

Safe Words是由a young programmer开发的Chrome扩展程序,该扩展的主要功能是“Takes out bad words from all your webpages”。

扩展截图

screenshot
screenshot

下载Safe Words扩展crx文件

下载Safe Words扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The best open source Chrome extension for profanity filtering and censoring!

Tired of seeing stupid YouTube comments?
Want to protect your children from bad words on the Internet?
Don't want to see obscene, foul or vulgar language?

Then this extension is for you!

Using a smart algorithm, the extension can filter/censor out 99% of bad words quite efficiently.

For example:
Asses, asssss => censored
but
assess, firetruck => is not

Works on Facebook, Twitter and YouTube!                    

扩展基本信息

名称 Safe Words Safe Words
ID mncnlkabidgflobdapkgmnlikkiilijj
官方URL https://chromewebstore.google.com/detail/safe-words/mncnlkabidgflobdapkgmnlikkiilijj
简介 Takes out bad words from all your webpages
文件大小 19.36 KB
安装次数 258
当前版本 0.16
更新时间 2016-06-24
上架时间 2016-06-24
评分 4.27/5 共15次评分
开发者 a young programmer
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safe Words",
    "version": "0.16",
    "description": "Takes out bad words from all your webpages",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "script.js"
            ]
        }
    ]
}