Phish Alert

A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.

Phish Alertคืออะไร?

Phish Alert เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ben Balcombe และคุณลักษณะหลักของมันคือ "A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Phish Alert

ดาวน์โหลดไฟล์ส่วนขยาย Phish Alert ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Phish Alert is a free open-source tool to give users an extra layer of assurance when browsing their emails. 

It should be said that the extension does not save or send any email or personal data about the user. 

Its primary function is to silently and unobtrusively scan an email once opened and perform a number of checks against common phishing tactics used by cyber criminals. This information is then presented to the user in a friendly and easy to understand way.

The user can optionally allow the extension to actively warn them when it thinks the email is of concern and the frequency and threshold of these warnings is completely customisable.

Top Features:
- Detect and warn from potential phishing emails
- Educate users on what to look for in phishing emails.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Phish Alert Phish Alert
ID plmmadcoagfaddabkjcolnplkfddbglp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/phish-alert/plmmadcoagfaddabkjcolnplkfddbglp
คำอธิบาย A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.
ขนาดไฟล์ 887 KB
จำนวนการติดตั้ง 156
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-05-02
วันที่เผยแพร่ 2022-04-14
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Ben Balcombe
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Phish Alert",
    "description": "A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.",
    "manifest_version": 3,
    "version": "1.1.0",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": ".\/icons\/icon-16x16.png",
        "48": ".\/icons\/icon-48x48.png",
        "128": ".\/icons\/icon-128x128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/extensionInjector.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/gmailJsLoader.js",
                "js\/extension.js"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/*"
    ],
    "action": {
        "default_popup": "Popup.html"
    }
}