PhishBlock

Helps to block phishing attempts through email.

什么是PhishBlock?

PhishBlock是由Casey Haralson开发的Chrome扩展程序,该扩展的主要功能是“Helps to block phishing attempts through email.”。

扩展截图

screenshot
screenshot
screenshot

下载PhishBlock扩展crx文件

下载PhishBlock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Phishing attempts happen every day, all the time.

We know we should be super wary of links and phone numbers in emails.  We know we should check the sender address and make sure it's correct.

This plugin helps with this idea.  It looks at the sender's email address and compares it to any links in the email.  If any information looks off or is unverifiable, it marks it in red.  If everything looks good, it marks the email in green.

Currently the plugin only works in Gmail. After installing, if you have Gmail open, close that tab and reopen it.

This is an open source project.

*Note: You should always see a green or red box around the email content.  I wrote this plugin over Gmail (it integrates with their code) so when they update, it might make this plugin stop integrating.  Please let me know and I will fix it as soon as possible.                    

扩展基本信息

名称 PhishBlock PhishBlock
ID mfigocgdflddipodffjfpbjmplhhfbeh
官方URL https://chromewebstore.google.com/detail/phishblock/mfigocgdflddipodffjfpbjmplhhfbeh
简介 Helps to block phishing attempts through email.
文件大小 45.73 KB
安装次数 97
当前版本 0.0.0.4
更新时间 2017-03-01
上架时间 2017-02-28
评分 5.00/5 共1次评分
开发者 Casey Haralson
付费类型 free
扩展官网 http://www.caseyharalson.com/projects/phishblock.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PhishBlock",
    "description": "Helps to block phishing attempts through email.",
    "version": "0.0.0.4",
    "manifest_version": 2,
    "permissions": [],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "jquery-1.11.3.min.js",
                "gmail.js"
            ],
            "css": [
                "gmail.css"
            ]
        }
    ],
    "icons": {
        "48": "icon_48_01.png",
        "128": "icon_128_01.png"
    }
}