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
官方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"
    ]
}