Sentinel

Protects users from phishing websites

O que é Sentinel?

Sentinel é uma extensão do Chrome desenvolvida por Sentinel, e sua principal característica é "Protects users from phishing websites".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Sentinel

Baixe arquivos de extensão Sentinel no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Sentinel Sentinel
ID lllckganoebphnkinkaaemidegnkdaie
URL Oficial https://chromewebstore.google.com/detail/sentinel/lllckganoebphnkinkaaemidegnkdaie
Descrição Protects users from phishing websites
Tamanho do Arquivo 42.56 KB
Contagem de Instalações 6,000
Versão Atual 1.1
Última Atualização 2021-12-10
Data de Publicação 2021-12-10
Desenvolvedor Sentinel
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://sentinel.wtf/privacy
Idiomas Suportados 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"
    }
}