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
公式URL 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
Eメール [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"
    ]
}