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是由https://mytools.management開發的Chrome擴展程式,該擴展的主要功能是“If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.”。

擴展截圖

screenshot

下載Block Page Assistant擴展crx文件

下載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
官方網址 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"
    ]
}