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) là gì?

Web Content Filter (within your Browser) là một tiện ích mở rộng Chrome được phát triển bởi serv.ing.apps, và tính năng chính của nó là "A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Web Content Filter (within your Browser)

Tải xuống các tệp mở rộng Web Content Filter (within your Browser) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web Content Filter (within your Browser) Web Content Filter (within your Browser)
ID ojofglimbmclnbinpbjnhcmkmipplibi
URL Chính Thức https://chromewebstore.google.com/detail/web-content-filter-within/ojofglimbmclnbinpbjnhcmkmipplibi
Mô tả A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.
Kích Thước Tệp 52.02 KB
Số Lần Cài Đặt 320
Phiên Bản Hiện Tại 1.6.3
Cập Nhật Lần Cuối 2019-12-01
Ngày Phát Hành 2019-11-27
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển serv.ing.apps
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/serv-inc/jsguardian/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}