PunyCode Domain Detection

This extension attempts to detect PunyCode domain phishing attack

什么是PunyCode Domain Detection?

PunyCode Domain Detection是由Warpdesign开发的Chrome扩展程序,该扩展的主要功能是“This extension attempts to detect PunyCode domain phishing attack”。

扩展截图

screenshot

下载PunyCode Domain Detection扩展crx文件

下载PunyCode Domain Detection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/"
    ]
}