Block Page Assistant

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

Cos'è Block Page Assistant?

Block Page Assistant è un'estensione di Chrome sviluppata da https://mytools.management, e la sua funzione principale è "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Block Page Assistant

Scarica i file di estensione Block Page Assistant in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Block Page Assistant Block Page Assistant
ID pkimhjnhalcimiegkknnidjmmoiedhon
URL Ufficiale https://chromewebstore.google.com/detail/block-page-assistant/pkimhjnhalcimiegkknnidjmmoiedhon
Descrizione If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.
Dimensione del File 31.76 KB
Conteggio Installazioni 3,620
Versione Corrente 2.0.5
Ultimo Aggiornamento 2023-11-18
Data di Pubblicazione 2019-02-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://mytools.management
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://support.adamnet.works
URL della Pagina della Politica sulla Privacy https://adamnet.works/privacy-policy
Lingue Supportate 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"
    ]
}