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