CleanBrowsing DNS Filtering

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

Was ist CleanBrowsing DNS Filtering?

CleanBrowsing DNS Filtering ist eine Chrome-Erweiterung, die von https://cleanbrowsing.org entwickelt wurde, und ihr Hauptmerkmal ist "CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.".

Erweiterungsscreenshots

screenshot

CleanBrowsing DNS Filtering-Erweiterungs-CRX-Datei herunterladen

Laden Sie CleanBrowsing DNS Filtering-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name CleanBrowsing DNS Filtering CleanBrowsing DNS Filtering
ID hiihdbcbkkocjcjooklhpojamigheibo
Offizielle URL https://chrome.google.com/webstore/detail/cleanbrowsing-dns-filteri/hiihdbcbkkocjcjooklhpojamigheibo
Beschreibung CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.
Dateigröße 97.05 KB
Installationsanzahl 273
Aktuelle Version 0.1
Letztes Update 2020-04-29
Veröffentlichungsdatum 2020-04-25
Entwickler https://cleanbrowsing.org
Zahlungsart free
Hilfeseite URL https://my.cleanbrowsing.org
Unterstützte Sprachen 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
    }
}