PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Was ist PunyCode Domain Detection?
PunyCode Domain Detection ist eine Chrome-Erweiterung, die von Warpdesign entwickelt wurde, und ihr Hauptmerkmal ist "This extension attempts to detect PunyCode domain phishing attack".
Erweiterungsscreenshots
PunyCode Domain Detection-Erweiterungs-CRX-Datei herunterladen
Laden Sie PunyCode Domain Detection-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension attempts to detect phishing with unicode domains. See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.
Grundlegende Informationen zur Erweiterung
Name | PunyCode Domain Detection |
ID | fkenopinnpinfcjneoanjoimhkmdcjne |
Offizielle URL | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
Beschreibung | This extension attempts to detect PunyCode domain phishing attack |
Dateigröße | 14.15 KB |
Installationsanzahl | 1,411 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2017-04-18 |
Veröffentlichungsdatum | 2017-04-18 |
Bewertung | 4.00/5 Insgesamt 5 Bewertungen |
Entwickler | Warpdesign |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/warpdesign/puny-phishing-detection |
Hilfeseite URL | https://github.com/warpdesign/puny-phishing-detection |
Unterstützte Sprachen | 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\/" ] } |