Block Page Assistant

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

Co je Block Page Assistant?

Block Page Assistant je rozšíření Chrome vyvinuté https://mytools.management, a jeho hlavní funkcí je „If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Block Page Assistant

Stáhněte si soubory rozšíření Block Page Assistant ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Block Page Assistant Block Page Assistant
ID pkimhjnhalcimiegkknnidjmmoiedhon
Oficiální URL https://chromewebstore.google.com/detail/block-page-assistant/pkimhjnhalcimiegkknnidjmmoiedhon
Popis If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.
Velikost souboru 31.76 KB
Počet instalací 3,620
Aktuální Verze 2.0.5
Poslední Aktualizace 2023-11-18
Datum Vydání 2019-02-20
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://mytools.management
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://support.adamnet.works
URL Stránky Zásad Ochrany Soukromí https://adamnet.works/privacy-policy
Podporované Jazyky 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"
    ]
}