Block Page Assistant

If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.

Block Page Assistantคืออะไร?

Block Page Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mytools.management และคุณลักษณะหลักของมันคือ "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Block Page Assistant

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

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

                        When using a web filtering product that also filters HTTPS but does not intercept the connections, the block page is generally the browser saying it cannot connect.
This extension resolves that issue for customers of DNS-based web filtering solutions by forwarding the user to a gateway hosted block page.

Enhances the user experience for those using a DNS-based Internet filter that runs mytools.management by redirecting blocked HTTPS connections to a clear block page.

Note that as of 2022, adam:ONE® users should instead use [adam:ONE® assist](https://chrome.google.com/webstore/detail/fdmpekabnlekabjlimjkfmdjajnddgpc).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Block Page Assistant Block Page Assistant
ID pkimhjnhalcimiegkknnidjmmoiedhon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/block-page-assistant/pkimhjnhalcimiegkknnidjmmoiedhon
คำอธิบาย If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.
ขนาดไฟล์ 31.76 KB
จำนวนการติดตั้ง 3,620
เวอร์ชันปัจจุบัน 2.0.5
อัปเดตครั้งล่าสุด 2023-11-18
วันที่เผยแพร่ 2019-02-20
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://mytools.management
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://support.adamnet.works
URL หน้านโยบายความเป็นส่วนตัว https://adamnet.works/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Block Page Assistant",
    "description": "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.",
    "version": "2.0.5",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "browser_action": [],
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mytools.management\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                "cs.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "recaptcha",
                "enabled": false,
                "path": "recaptcha-ruleset.json"
            }
        ]
    },
    "permissions": [
        "",
        "declarativeNetRequest",
        "storage",
        "tabs",
        "webNavigation",
        "webRequest"
    ]
}