Email Phishing Tool
Check if an email is phishing with one click!
Wat is Email Phishing Tool?
Email Phishing Tool is een Chrome-extensie ontwikkeld door SFBN Dev, en de belangrijkste functie is "Check if an email is phishing with one click!".
Extensie Screenshots
Download het CRX-bestand van de extensie Email Phishing Tool
Download Email Phishing Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 :) Basisinformatie over de Extensie
| Naam | |
| ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
| Officiële URL | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
| Beschrijving | Check if an email is phishing with one click! |
| Bestandsgrootte | 114 KB |
| Aantal Installaties | 149 |
| Huidige Versie | 1.0.1 |
| Laatst Bijgewerkt | 2021-01-21 |
| Publicatiedatum | 2020-05-04 |
| Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | SFBN Dev |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
}
} | |