Content Filter

This extension censors text in web pages.

Content Filterとは何ですか?

Content Filterはhttps://tekfused.comによって開発されたChromeの拡張機能で、その主な機能は「This extension censors text in web pages.」です。

拡張機能のスクリーンショット

screenshot

Content Filter拡張機能のCRXファイルをダウンロード

Content Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Are you tired of reading profanity and other foolishness on the web? Then this is the extension for you!! Choose what you want to filter out, and the extension censors the text on the page (You can view the uncensored text by hovering over the censored element with your mouse)!

You can choose the categories that are filtered:

1. Adult Content
2. Alcohol/Drugs
3. Profanity
4. Racist Content

Privacy:

The Content Filter does not track anything. It simply censors text in the webpage - that's all it does. No backdoors, no internet usage data sent to servers, none of that! In fact, one reason I created this extension is because I wanted to know what was happening with my data. I take privacy seriously!                    

拡張機能の基本情報

名前 Content Filter Content Filter
ID gejbdglkenefbfddoaofohfjckjcgldm
公式URL https://chromewebstore.google.com/detail/content-filter/gejbdglkenefbfddoaofohfjckjcgldm
説明 This extension censors text in web pages.
ファイルサイズ 379 KB
インストール数 193
現在のバージョン 1.0.4.0
最終更新日 2017-12-30
公開日 2017-12-30
評価 3.75/5 合計 4 レビュー
開発者 https://tekfused.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.tekfused.com
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Content Filter",
    "short_name": "Content Filter",
    "description": "This extension censors text in web pages.",
    "version": "1.0.4.0",
    "author": "TEKFused",
    "homepage_url": "https:\/\/www.tekfused.com",
    "browser_action": {
        "default_title": "Content Filter",
        "default_popup": "HTML\/options.html"
    },
    "options_ui": {
        "page": "HTML\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "Scripts\/jquery.js",
                "Scripts\/cut.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "Scripts\/background.js"
        ]
    },
    "icons": {
        "128": "Images\/128x128.png",
        "48": "Images\/48x48.png",
        "32": "Images\/32x32.png",
        "16": "Images\/16x16.png"
    }
}