CleanBrowsing DNS Filtering for Schools

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

Was ist CleanBrowsing DNS Filtering for Schools?

CleanBrowsing DNS Filtering for Schools 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
screenshot
screenshot

CleanBrowsing DNS Filtering for Schools-Erweiterungs-CRX-Datei herunterladen

Laden Sie CleanBrowsing DNS Filtering for Schools-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 was built for organizations that manage a fleet of Chrome devices and actively manage Chrome browsers in their organization. It allows an organization to pass a JSON value to the extension and force the configuration for all browsers in their OU.

This extension can also be used by individuals to configure unmanaged browsers.                    

Grundlegende Informationen zur Erweiterung

Name CleanBrowsing DNS Filtering for Schools CleanBrowsing DNS Filtering for Schools
ID pmcldejjlmciaffinikgoaoleceldphd
Offizielle URL https://chromewebstore.google.com/detail/cleanbrowsing-dns-filteri/pmcldejjlmciaffinikgoaoleceldphd
Beschreibung CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.
Dateigröße 75.66 KB
Installationsanzahl 116
Aktuelle Version 1.0
Letztes Update 2022-08-12
Veröffentlichungsdatum 2022-03-21
Entwickler https://cleanbrowsing.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://cleanbrowsing.org
Hilfeseite URL https://cleanbrowsing.org/documentation
URL der Datenschutzrichtlinien-Seite https://cleanbrowsing.org/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CleanBrowsing DNS Filtering for Schools",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/my.cleanbrowsing.org\/",
        "https:\/\/my.cleanbrowsing.org\/*",
        "https:\/\/my.cleanbrowsing.org\/apis\/devices\/debug-verify",
        "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": "1.0",
    "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"
            ]
        }
    ],
    "storage": {
        "managed_schema": "schema.json"
    },
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}