PhishBlock

Helps to block phishing attempts through email.

ما هو PhishBlock؟

PhishBlock هو إضافة Chrome تم تطويرها بواسطة Casey Haralson، والميزة الرئيسية لها هي "Helps to block phishing attempts through email.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة PhishBlock

قم بتنزيل ملفات الامتداد PhishBlock بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}