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
官方網址 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\/"
    ]
}