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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "If using DNS based web filtering, this extension will improve the user experience for block pages when using HTTPS."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Block Page Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}