Block Page Assistant

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

O que é Block Page Assistant?

Block Page Assistant é uma extensão do Chrome desenvolvida por https://mytools.management, e sua principal característica é "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Block Page Assistant

Baixe arquivos de extensão Block Page Assistant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Block Page Assistant Block Page Assistant
ID pkimhjnhalcimiegkknnidjmmoiedhon
URL Oficial https://chromewebstore.google.com/detail/block-page-assistant/pkimhjnhalcimiegkknnidjmmoiedhon
Descrição If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.
Tamanho do Arquivo 31.76 KB
Contagem de Instalações 3,620
Versão Atual 2.0.5
Última Atualização 2023-11-18
Data de Publicação 2019-02-20
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://mytools.management
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://support.adamnet.works
URL da Página de Política de Privacidade https://adamnet.works/privacy-policy
Idiomas Suportados 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"
    ]
}