Email Phishing Tool

Check if an email is phishing with one click!

O que é Email Phishing Tool?

Email Phishing Tool é uma extensão do Chrome desenvolvida por SFBN Dev, e sua principal característica é "Check if an email is phishing with one click!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Email Phishing Tool

Baixe arquivos de extensão Email Phishing Tool 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

                        Simply highlight any text and click the extension icon, and you will be presented with a phishing analysis.

Features include:
- Phishy keyword detector 
- Spell check
- Unsafe links
- Overall rating

Enjoy :)                    

Informações Básicas da Extensão

Nome Email Phishing Tool Email Phishing Tool
ID libamiifmgfpcafbdjhaojbbbdgcbhif
URL Oficial https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif
Descrição Check if an email is phishing with one click!
Tamanho do Arquivo 114 KB
Contagem de Instalações 149
Versão Atual 1.0.1
Última Atualização 2021-01-21
Data de Publicação 2020-05-04
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor SFBN Dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Email Phishing Tool",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Check if an email is phishing with one click!",
    "icons": {
        "16": "emailphishingicon16.png",
        "48": "emailphishingicon48.png",
        "128": "emailphishingicon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Email Phishing Tool",
        "default_popup": "popup.html"
    }
}