Email Phishing Tool

Check if an email is phishing with one click!

什么是Email Phishing Tool?

Email Phishing Tool是由SFBN Dev开发的Chrome扩展程序,该扩展的主要功能是“Check if an email is phishing with one click!”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Email Phishing Tool扩展crx文件

下载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"
    }
}