PunyCode Domain Detection

This extension attempts to detect PunyCode domain phishing attack

PunyCode Domain Detection क्या है?

PunyCode Domain Detection Warpdesign द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension attempts to detect PunyCode domain phishing attack"।

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

screenshot

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

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

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

                        This extension attempts to detect phishing with unicode domains.

See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.                    

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

नाम PunyCode Domain Detection PunyCode Domain Detection
ID fkenopinnpinfcjneoanjoimhkmdcjne
आधिकारिक URL https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne
विवरण This extension attempts to detect PunyCode domain phishing attack
फ़ाइल का आकार 14.15 KB
स्थापना संख्या 1,411
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2017-04-18
प्रकाशन तिथि 2017-04-18
रेटिंग 4.00/5 कुल 5 रेटिंग्स
डेवलपर Warpdesign
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/warpdesign/puny-phishing-detection
सहायता पृष्ठ URL https://github.com/warpdesign/puny-phishing-detection
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PunyCode Domain Detection",
    "description": "This extension attempts to detect PunyCode domain phishing attack",
    "version": "0.0.2",
    "author": "Nicolas Ramz",
    "page_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/punycode.js",
                "js\/content-main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ]
}