Browser Guard

Protect browsers from accessing untrusted websites.

Vad är Browser Guard?

Browser Guard är en Chrome-tillägg utvecklad av PhishAnatomy, och dess huvudfunktion är "Protect browsers from accessing untrusted websites.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Browser Guard-förlängningens CRX-fil

Ladda ner Browser Guard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Browser Guard Browser Guard
ID pkmhephjkgkjgfmpjcdjapkmjappfbjf
Officiell webbadress https://chromewebstore.google.com/detail/browser-guard/pkmhephjkgkjgfmpjcdjapkmjappfbjf
Beskrivning Protect browsers from accessing untrusted websites.
Filstorlek 221 KB
Antal Installationer 30
Aktuell Version 0.0.3
Senast Uppdaterad 2022-01-24
Publiceringsdatum 2022-01-17
Utvecklare PhishAnatomy
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/phishanatomy/Browser-Guard
Hjälpsida URL https://github.com/phishanatomy/Browser-Guard/issues
Stödda Språk 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"
    ]
}