Dot Phishing Protector

This extension protects yourself against punycode domains phishing attacks.

Dot Phishing Protector là gì?

Dot Phishing Protector là một tiện ích mở rộng Chrome được phát triển bởi Roger Salgado, và tính năng chính của nó là "This extension protects yourself against punycode domains phishing attacks.".

Ả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 Dot Phishing Protector

Tải xuống các tệp mở rộng Dot Phishing Protector 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 protects yourself against punycode domains phishing attacks that try to impersonate well known sites (including most banks online) by replacing some letters with the same character with a small dot bellow, that most people ignore/don't notice it.

In a real phishing attack (using this method), the little dot may be confused with a dead pixel or some dust on the screen.

As an example you may consider the following domain:

http://www.xn--goldmasachs-1x8e.com/

Despict the small do bellow the lowercase N character, it might be easily confused with:
http://www.goldmansachs.com/

This extension will provide a warning dialog every time the browser tries to open Urls domains that are punycode encoded, which may be used to trick the user.                    

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

Tên Dot Phishing Protector Dot Phishing Protector
ID plhkgdgglhonnlckmigoohlmghiiepdo
URL Chính Thức https://chromewebstore.google.com/detail/dot-phishing-protector/plhkgdgglhonnlckmigoohlmghiiepdo
Mô tả This extension protects yourself against punycode domains phishing attacks.
Kích Thước Tệp 8.17 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-01-19
Ngày Phát Hành 2018-01-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Roger Salgado
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dot Phishing Protector",
    "description": "This extension protects yourself against punycode domains phishing attacks.",
    "author": "Roger Salgado ([email protected])",
    "version": "1.0.1",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}