PunyCode Domain Detection

This extension attempts to detect PunyCode domain phishing attack

PunyCode Domain Detection là gì?

PunyCode Domain Detection là một tiện ích mở rộng Chrome được phát triển bởi Warpdesign, và tính năng chính của nó là "This extension attempts to detect PunyCode domain phishing attack".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PunyCode Domain Detection

Tải xuống các tệp mở rộng PunyCode Domain Detection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension attempts to detect phishing with unicode domains.

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PunyCode Domain Detection PunyCode Domain Detection
ID fkenopinnpinfcjneoanjoimhkmdcjne
URL Chính Thức https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne
Mô tả This extension attempts to detect PunyCode domain phishing attack
Kích Thước Tệp 14.15 KB
Số Lần Cài Đặt 1,411
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-04-18
Ngày Phát Hành 2017-04-18
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Warpdesign
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/warpdesign/puny-phishing-detection
URL Trang Trợ Giúp https://github.com/warpdesign/puny-phishing-detection
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}