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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A cyber security awareness, educator and monitoring chrome extension for Gmail to provide that extra layer of assurance."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Phish Alert एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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