Email Phishing Tool
Check if an email is phishing with one click!
Qu'est-ce que Email Phishing Tool ?
Email Phishing Tool est une extension Chrome développée par SFBN Dev, et sa fonction principale est "Check if an email is phishing with one click!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Email Phishing Tool
Téléchargez les fichiers d'extension Email Phishing Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 :)
Informations de Base sur l'Extension
Nom | Email Phishing Tool |
ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
URL Officiel | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
Description | Check if an email is phishing with one click! |
Taille du Fichier | 114 KB |
Nombre d'Installations | 149 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2021-01-21 |
Date de Publication | 2020-05-04 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | SFBN Dev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |