CleanBrowsing DNS Filtering for Schools

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

What is CleanBrowsing DNS Filtering for Schools?

CleanBrowsing DNS Filtering for Schools is a Chrome extension developed by https://cleanbrowsing.org, and its main feature is "CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.".

Extension Screenshots

screenshot
screenshot
screenshot

Download CleanBrowsing DNS Filtering for Schools Extension CRX File

Download CleanBrowsing DNS Filtering for Schools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name CleanBrowsing DNS Filtering for Schools CleanBrowsing DNS Filtering for Schools
ID pmcldejjlmciaffinikgoaoleceldphd
Official URL https://chromewebstore.google.com/detail/cleanbrowsing-dns-filteri/pmcldejjlmciaffinikgoaoleceldphd
Description CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.
File Size 75.66 KB
Installation Count 116
Current Version 1.0
Last Updated 2022-08-12
Publish Date 2022-03-21
Developer https://cleanbrowsing.org
Email [email protected]
Payment Type free
Extension Website https://cleanbrowsing.org
Help Page URL https://cleanbrowsing.org/documentation
Privacy Policy Page URL https://cleanbrowsing.org/privacy
Supported Languages 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'"
}