Email Phishing Tool

Check if an email is phishing with one click!

Что такое Email Phishing Tool?

Email Phishing Tool - это расширение Chrome, разработанное SFBN Dev, и его основная функция - "Check if an email is phishing with one click!".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Email Phishing Tool

Скачайте файлы расширений Email Phishing Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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 :)                    

Основная информация о расширении

Название Email Phishing Tool Email Phishing Tool
ID libamiifmgfpcafbdjhaojbbbdgcbhif
Официальный URL https://chromewebstore.google.com/detail/email-phishing-tool/libamiifmgfpcafbdjhaojbbbdgcbhif
Описание Check if an email is phishing with one click!
Размер файла 114 KB
Количество установок 149
Текущая Версия 1.0.1
Последнее Обновление 2021-01-21
Дата публикации 2020-05-04
Рейтинг 3.00/5 Всего 2 оценок
Разработчик SFBN Dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}