Email Phishing Tool
Check if an email is phishing with one click!
Co to jest Email Phishing Tool?
Email Phishing Tool to rozszerzenie Chrome opracowane przez SFBN Dev, a jego główną funkcją jest „Check if an email is phishing with one click!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Email Phishing Tool
Pobierz pliki rozszerzeń Email Phishing Tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 :) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | libamiifmgfpcafbdjhaojbbbdgcbhif |
| Oficjalny URL | https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif |
| Opis | Check if an email is phishing with one click! |
| Rozmiar pliku | 114 KB |
| Liczba instalacji | 149 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2021-01-21 |
| Data Publikacji | 2020-05-04 |
| Ocena | 3.00/5 Łącznie 2 Oceny |
| Deweloper | SFBN Dev |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |