Email Phishing Tool
Check if an email is phishing with one click!
Vad är Email Phishing Tool?
Email Phishing Tool är en Chrome-tillägg utvecklad av SFBN Dev, och dess huvudfunktion är "Check if an email is phishing with one click!".
Tilläggsskärmbilder
Ladda ner Email Phishing Tool-förlängningens CRX-fil
Ladda ner Email Phishing Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 :)
Grundläggande Information om Tillägg
Namn | Email Phishing Tool |
ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
Officiell webbadress | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
Beskrivning | Check if an email is phishing with one click! |
Filstorlek | 114 KB |
Antal Installationer | 149 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2021-01-21 |
Publiceringsdatum | 2020-05-04 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | SFBN Dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |