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文件

下載Web Content Filter (within your Browser)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}