Web Content Filter (within your Browser)

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

Wat is Web Content Filter (within your Browser)?

Web Content Filter (within your Browser) is een Chrome-extensie ontwikkeld door serv.ing.apps, en de belangrijkste functie is "A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Web Content Filter (within your Browser)

Download Web Content Filter (within your Browser)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Web Content Filter (within your Browser) Web Content Filter (within your Browser)
ID ojofglimbmclnbinpbjnhcmkmipplibi
Officiële URL https://chromewebstore.google.com/detail/web-content-filter-within/ojofglimbmclnbinpbjnhcmkmipplibi
Beschrijving A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.
Bestandsgrootte 52.02 KB
Aantal Installaties 320
Huidige Versie 1.6.3
Laatst Bijgewerkt 2019-12-01
Publicatiedatum 2019-11-27
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar serv.ing.apps
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/serv-inc/jsguardian/issues
Ondersteunde Talen 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"
    }
}