Dot Phishing Protector

This extension protects yourself against punycode domains phishing attacks.

Dot Phishing Protectorคืออะไร?

Dot Phishing Protector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roger Salgado และคุณลักษณะหลักของมันคือ "This extension protects yourself against punycode domains phishing attacks."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dot Phishing Protector

ดาวน์โหลดไฟล์ส่วนขยาย Dot Phishing Protector ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dot Phishing Protector Dot Phishing Protector
ID plhkgdgglhonnlckmigoohlmghiiepdo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dot-phishing-protector/plhkgdgglhonnlckmigoohlmghiiepdo
คำอธิบาย This extension protects yourself against punycode domains phishing attacks.
ขนาดไฟล์ 8.17 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-01-19
วันที่เผยแพร่ 2018-01-19
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Roger Salgado
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}