PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
PunyCode Domain Detectionคืออะไร?
PunyCode Domain Detection เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Warpdesign และคุณลักษณะหลักของมันคือ "This extension attempts to detect PunyCode domain phishing attack"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PunyCode Domain Detection
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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\/" ] } |