Email Phishing Tool

Check if an email is phishing with one click!

Cos'è Email Phishing Tool?

Email Phishing Tool è un'estensione di Chrome sviluppata da SFBN Dev, e la sua funzione principale è "Check if an email is phishing with one click!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Email Phishing Tool

Scarica i file di estensione Email Phishing Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 :)                    

Informazioni di Base sull'Estensione

Nome Email Phishing Tool Email Phishing Tool
ID libamiifmgfpcafbdjhaojbbbdgcbhif
URL Ufficiale https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif
Descrizione Check if an email is phishing with one click!
Dimensione del File 114 KB
Conteggio Installazioni 149
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-01-21
Data di Pubblicazione 2020-05-04
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore SFBN Dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}