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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A content filter for websites, emulating dansguardian’s score-based filter in JavaScript."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Web Content Filter (within your Browser) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}