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
Eメール [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"
    ]
}