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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}