Web Content Filter (within your Browser)

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

Apa itu Web Content Filter (within your Browser)?

Web Content Filter (within your Browser) adalah ekstensi Chrome yang dikembangkan oleh serv.ing.apps, dan fitur utamanya adalah "A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Web Content Filter (within your Browser)

Unduh file ekstensi Web Content Filter (within your Browser) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Web Content Filter (within your Browser) Web Content Filter (within your Browser)
ID ojofglimbmclnbinpbjnhcmkmipplibi
URL Resmi https://chromewebstore.google.com/detail/web-content-filter-within/ojofglimbmclnbinpbjnhcmkmipplibi
Deskripsi A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.
Ukuran File 52.02 KB
Jumlah Instalasi 320
Versi Saat Ini 1.6.3
Terakhir Diperbarui 2019-12-01
Tanggal Publikasi 2019-11-27
Penilaian 5.00/5 Total 4 Penilaian
Pengembang serv.ing.apps
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/serv-inc/jsguardian/issues
Bahasa yang Didukung 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"
    }
}