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
官方網址 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
電子郵箱 [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"
    }
}