PhishGuard

PhishGuard is a way for you to make sure you know what you're clicking on! This extension aims to prevent email phishing attacks…

PhishGuard क्या है?

PhishGuard Bill Demirkapi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "PhishGuard is a way for you to make sure you know what you're clicking on! This extension aims to prevent email phishing attacks…"।

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

screenshot
screenshot

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

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

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

                        PhishGuard is a way for you to make sure you know what you're clicking on! 

This extension aims to prevent email phishing attacks by telling you where links really lead. The way it works if it detects a clickable link and the location it leads to is somewhere different from what is advertised, it will highlight it red, bold it, and when you hover over the link, it will tell you where it really leads!

Currently, the extension supports both gmail and outlook/hotmail. 

GitHub Repo: https://github.com/D4stiny/PhishGuard

Icons made by Smashicons from www.flaticon.com is licensed by CC 3.0 BY
Gmail logo by cosmcala from www.devianart.com
Outlook logo by Microsoft                    

एक्सटेंशन की मूल जानकारी

नाम PhishGuard PhishGuard
ID ngafnigajpgginnijhfcbeikpakecppl
आधिकारिक URL https://chromewebstore.google.com/detail/phishguard/ngafnigajpgginnijhfcbeikpakecppl
विवरण PhishGuard is a way for you to make sure you know what you're clicking on! This extension aims to prevent email phishing attacks…
फ़ाइल का आकार 54.87 KB
स्थापना संख्या 35
वर्तमान संस्करण 0.1
अंतिम अपडेट 2017-11-05
प्रकाशन तिथि 2017-11-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Bill Demirkapi
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PhishGuard",
    "version": "0.1",
    "browser_action": [],
    "icons": {
        "16": "fishing-icon-16.png",
        "128": "fishing-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/*\/",
                "https:\/\/outlook.live.com\/owa\/*"
            ],
            "js": [
                "jquery.min.js",
                "jquery.qtip.js",
                "content.js"
            ]
        }
    ]
}