Naughty Language Filter

Filters out obscene words on webpages and optionally mutes profanity on Netflix.

什麼是Naughty Language Filter?

Naughty Language Filter是由thedevcaleb開發的Chrome擴展程式,該擴展的主要功能是“Filters out obscene words on webpages and optionally mutes profanity on Netflix.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Naughty Language Filter擴展crx文件

下載Naughty Language Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This "Naughty Language Filter" filters out obscene text on webpages and even has the additional feature of muting profanity in Netflix (by utilizing Netflix's subtitles). Essentially, a profanity filter that purifies your window into the internet, one word at a time!

●  Designed to have virtually no negative impact on performance.
●  The built-in bad word list contains most all words that would be considered as "bad words".
●  The Netflix video muting works by processing Netflix's subtitles (subtitles must be turned on within Netflix for this to work, but the extension will hide the subtitles via magic!). The Netflix video muting will not be perfect because it is directly dependent on the subtitles being accurate and timely.
●  Words can be added or deleted from the profanity word list as desired.
●  Profanity filtering can be turned off on a per-website basis.
●  Customize how words will be filtered (e.g. will it look like *****, or l----, or FILTERED). You choose!

The obscene text filtering works with essentially any webpage: Reddit, Youtube, Soundcloud, Google, Facebook, ... basically any website!                    

擴展基本資訊

名稱 Naughty Language Filter Naughty Language Filter
ID mlhblfcjgnoohcjkcmighdibcnaifmgo
官方網址 https://chromewebstore.google.com/detail/naughty-language-filter/mlhblfcjgnoohcjkcmighdibcnaifmgo
簡介 Filters out obscene words on webpages and optionally mutes profanity on Netflix.
檔案大小 205 KB
安裝次數 443
目前版本 1.07
更新時間 2018-04-23
上架時間 2018-04-23
評分 4.20/5 共 5 次評分
開發者 thedevcaleb
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Naughty Language Filter",
    "description": "Filters out obscene words on webpages and optionally mutes profanity on Netflix.",
    "version": "1.07",
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ]
}