Sentinel

Protects users from phishing websites

Co je Sentinel?

Sentinel je rozšíření Chrome vyvinuté Sentinel, a jeho hlavní funkcí je „Protects users from phishing websites“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Sentinel

Stáhněte si soubory rozšíření Sentinel ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Sentinel is a browser extension built to block scam & phishing websites.                    

Základní Informace o Rozšíření

Název Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
Oficiální URL https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Popis Protects users from phishing websites
Velikost souboru 42.56 KB
Počet instalací 6,000
Aktuální Verze 1.1
Poslední Aktualizace 2021-12-10
Datum Vydání 2021-12-10
Vývojář Sentinel
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://sentinel.wtf/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sentinel",
    "version": "1.1",
    "description": "Protects users from phishing websites",
    "author": "Sentinel Team",
    "background": {
        "scripts": [
            ".\/src\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/src\/afterpage.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "blocked.html"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "19": "icons\/19.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Sentinel",
        "default_popup": ".\/popup\/popup.html"
    },
    "icons": {
        "16": ".\/icons\/16.png",
        "19": ".\/icons\/19.png",
        "32": ".\/icons\/32.png",
        "48": ".\/icons\/48.png",
        "128": ".\/icons\/128.png"
    }
}