CleanBrowsing DNS Filtering for Schools

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

CleanBrowsing DNS Filtering for Schools란 무엇입니까?

CleanBrowsing DNS Filtering for Schools은(는) https://cleanbrowsing.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CleanBrowsing DNS Filtering for Schools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 CleanBrowsing DNS Filtering for Schools CleanBrowsing DNS Filtering for Schools
ID pmcldejjlmciaffinikgoaoleceldphd
공식 URL https://chromewebstore.google.com/detail/cleanbrowsing-dns-filteri/pmcldejjlmciaffinikgoaoleceldphd
설명 CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible.
파일 크기 75.66 KB
설치 횟수 116
현재 버전 1.0
최근 업데이트 2022-08-12
출시 날짜 2022-03-21
개발자 https://cleanbrowsing.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://cleanbrowsing.org
도움말 페이지 URL https://cleanbrowsing.org/documentation
개인정보 보호 정책 페이지 URL https://cleanbrowsing.org/privacy
지원되는 언어 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'"
}