Phish Alert

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

什麼是Phish Alert?

Phish Alert是由Ben Balcombe開發的Chrome擴展程式,該擴展的主要功能是“A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Phish Alert擴展crx文件

下載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
官方網址 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"
    }
}