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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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