Web Content Filter (within your Browser)

A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.

Web Content Filter (within your Browser)란 무엇입니까?

Web Content Filter (within your Browser)은(는) serv.ing.apps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A content filter for websites, emulating dansguardian’s score-based filter in JavaScript."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Web Content Filter (within your Browser) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A rule-based content filter inside your browser.

The rules are taken from e2guardian: It has a number of key words, which it tries to find on the web page. For each word found, a score is incremented. If a certain limit is passed, the page is blocked.

You can set values via managed storage administratively. You can customize the block page. See https://www.patreon.com/posts/web-content-1-3-20710067.                    

확장 프로그램 기본 정보

이름 Web Content Filter (within your Browser) Web Content Filter (within your Browser)
ID ojofglimbmclnbinpbjnhcmkmipplibi
공식 URL https://chromewebstore.google.com/detail/web-content-filter-within/ojofglimbmclnbinpbjnhcmkmipplibi
설명 A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.
파일 크기 52.02 KB
설치 횟수 320
현재 버전 1.6.3
최근 업데이트 2019-12-01
출시 날짜 2019-11-27
평점 5.00/5 총 4 개의 평점
개발자 serv.ing.apps
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/serv-inc/jsguardian/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Content Filter (within your Browser)",
    "version": "1.6.3",
    "description": "A content filter for websites, emulating dansguardian\u2019s score-based filter in JavaScript.",
    "short_name": "Web Content Filter",
    "author": "serv-inc",
    "homepage_url": "https:\/\/github.com\/serv-inc\/JSGuardian",
    "applications": {
        "gecko": {
            "id": "@wsf"
        }
    },
    "icons": {
        "128": "filter.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "settings.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "get_text_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "storage": {
        "managed_schema": "schema.json"
    }
}