Browser Guard

Protect browsers from accessing untrusted websites.

What is Browser Guard?

Browser Guard is a Chrome extension developed by PhishAnatomy, and its main feature is "Protect browsers from accessing untrusted websites.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download Browser Guard Extension CRX File

Download Browser Guard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Browser Guard intercepts all top-level navigation requests and checks if the destination is on your list of trusted domains. If it is not found, the request is blocked, and you're given the option to temporarily or permanently trust the domain.                    

Extension Basic Information

Name Browser Guard Browser Guard
ID pkmhephjkgkjgfmpjcdjapkmjappfbjf
Official URL https://chromewebstore.google.com/detail/browser-guard/pkmhephjkgkjgfmpjcdjapkmjappfbjf
Description Protect browsers from accessing untrusted websites.
File Size 221 KB
Installation Count 30
Current Version 0.0.3
Last Updated 2022-01-24
Publish Date 2022-01-17
Developer PhishAnatomy
Email [email protected]
Payment Type free
Extension Website https://github.com/phishanatomy/Browser-Guard
Help Page URL https://github.com/phishanatomy/Browser-Guard/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "version": "0.0.3",
    "manifest_version": 2,
    "content_security_policy": "default-src 'self';",
    "icons": {
        "16": "art\/browser-guard-16.png",
        "24": "art\/browser-guard-24.png",
        "32": "art\/browser-guard-32.png",
        "48": "art\/browser-guard-48.png",
        "64": "art\/browser-guard-64.png",
        "128": "art\/browser-guard-128.png",
        "256": "art\/browser-guard-256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "art\/browser-guard-16.png",
            "24": "art\/browser-guard-24.png",
            "32": "art\/browser-guard-32.png",
            "48": "art\/browser-guard-48.png",
            "64": "art\/browser-guard-64.png"
        },
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "storage",
        ""
    ],
    "background": {
        "page": "html\/background.html",
        "persistent": true
    },
    "web_accessible_resources": [
        "html\/blocked.html"
    ]
}