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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://cleanbrowsing.org และคุณลักษณะหลักของมันคือ "CleanBrowsing DNS filter for Chrome. Ideal for schools and chromebooks where changing the DNS is not possible."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CleanBrowsing DNS Filtering for Schools

ดาวน์โหลดไฟล์ส่วนขยาย CleanBrowsing DNS Filtering for Schools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}