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) - это расширение Chrome, разработанное serv.ing.apps, и его основная функция - "A content filter for websites, emulating dansguardian’s score-based filter in JavaScript.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Web Content Filter (within your Browser)

Скачайте файлы расширений 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
Официальный 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"
    }
}