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 là gì?

Block Page Assistant là một tiện ích mở rộng Chrome được phát triển bởi https://mytools.management, và tính năng chính của nó là "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Block Page Assistant

Tải xuống các tệp mở rộng Block Page Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Block Page Assistant Block Page Assistant
ID pkimhjnhalcimiegkknnidjmmoiedhon
URL Chính Thức https://chromewebstore.google.com/detail/block-page-assistant/pkimhjnhalcimiegkknnidjmmoiedhon
Mô tả If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.
Kích Thước Tệp 31.76 KB
Số Lần Cài Đặt 3,620
Phiên Bản Hiện Tại 2.0.5
Cập Nhật Lần Cuối 2023-11-18
Ngày Phát Hành 2019-02-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://mytools.management
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://support.adamnet.works
URL Trang Chính Sách Bảo Mật https://adamnet.works/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}