Block Page Assistant

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

Qu'est-ce que Block Page Assistant ?

Block Page Assistant est une extension Chrome développée par https://mytools.management, et sa fonction principale est "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Block Page Assistant

Téléchargez les fichiers d'extension Block Page Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Block Page Assistant Block Page Assistant
ID pkimhjnhalcimiegkknnidjmmoiedhon
URL Officiel https://chromewebstore.google.com/detail/block-page-assistant/pkimhjnhalcimiegkknnidjmmoiedhon
Description If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS.
Taille du Fichier 31.76 KB
Nombre d'Installations 3,620
Version Actuelle 2.0.5
Dernière Mise à Jour 2023-11-18
Date de Publication 2019-02-20
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://mytools.management
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://support.adamnet.works
URL de la Page de Politique de Confidentialité https://adamnet.works/privacy-policy
Langues Prises en Charge 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"
    ]
}