PunyCode Domain Detection

This extension attempts to detect PunyCode domain phishing attack

What is PunyCode Domain Detection?

PunyCode Domain Detection is a Chrome extension developed by Warpdesign, and its main feature is "This extension attempts to detect PunyCode domain phishing attack".

Extension Screenshots

screenshot

Download PunyCode Domain Detection Extension CRX File

Download PunyCode Domain Detection extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension attempts to detect phishing with unicode domains.

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

Extension Basic Information

Name PunyCode Domain Detection PunyCode Domain Detection
ID fkenopinnpinfcjneoanjoimhkmdcjne
Official URL https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne
Description This extension attempts to detect PunyCode domain phishing attack
File Size 14.15 KB
Installation Count 1,411
Current Version 0.0.2
Last Updated 2017-04-18
Publish Date 2017-04-18
Rating 4.00/5 Total 5 Ratings
Developer Warpdesign
Payment Type free
Extension Website https://github.com/warpdesign/puny-phishing-detection
Help Page URL https://github.com/warpdesign/puny-phishing-detection
Supported Languages 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\/"
    ]
}