Email Phishing Tool
Check if an email is phishing with one click!
What is Email Phishing Tool?
Email Phishing Tool is a Chrome extension developed by SFBN Dev, and its main feature is "Check if an email is phishing with one click!".
Extension Screenshots
Download Email Phishing Tool Extension CRX File
Download Email Phishing Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 :)
Extension Basic Information
Name | Email Phishing Tool |
ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
Official URL | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
Description | Check if an email is phishing with one click! |
File Size | 114 KB |
Installation Count | 149 |
Current Version | 1.0.1 |
Last Updated | 2021-01-21 |
Publish Date | 2020-05-04 |
Rating | 3.00/5 Total 2 Ratings |
Developer | SFBN Dev |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |