CleanBrowsing DNS Filtering

CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.

Что такое CleanBrowsing DNS Filtering?

CleanBrowsing DNS Filtering - это расширение Chrome, разработанное https://cleanbrowsing.org, и его основная функция - "CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.".

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

screenshot

Скачать файл CRX расширения CleanBrowsing DNS Filtering

Скачайте файлы расширений CleanBrowsing DNS Filtering в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension activates CleanBrowsing directly on your Chrome browser. If you can't switch the DNS on your device and Chrome is the only browser available, this extension might be a good option for you. It requires a CleanBrowsing account that can be created here: https://my.cleanbrowsing.org/register                    

Основная информация о расширении

Название CleanBrowsing DNS Filtering CleanBrowsing DNS Filtering
ID hiihdbcbkkocjcjooklhpojamigheibo
Официальный URL https://chrome.google.com/webstore/detail/cleanbrowsing-dns-filteri/hiihdbcbkkocjcjooklhpojamigheibo
Описание CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.
Размер файла 97.05 KB
Количество установок 273
Текущая Версия 0.1
Последнее Обновление 2020-04-29
Дата публикации 2020-04-25
Разработчик https://cleanbrowsing.org
Тип оплаты free
URL страницы помощи https://my.cleanbrowsing.org
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CleanBrowsing DNS Filtering",
    "permissions": [
        "storage",
        "tabs",
        "alarms",
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "webNavigation",
        "https:\/\/www.categorify.org\/*",
        "https:\/\/www.categorify.org\/",
        "https:\/\/my.cleanbrowsing.org\/",
        "https:\/\/my.cleanbrowsing.org\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "description": "CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.",
    "icons": {
        "16": "icon-128.png",
        "19": "icon-128.png",
        "32": "icon-128.png",
        "38": "icon-128.png",
        "48": "icon-128.png",
        "128": "icon-128.png"
    },
    "version": "0.1",
    "browser_action": {
        "default_icon": {
            "16": "icon-128.png",
            "19": "icon-128.png",
            "32": "icon-128.png",
            "38": "icon-128.png",
            "48": "icon-128.png",
            "128": "icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}