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
官方網址 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"
            ]
        }
    ]
}