PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Co je PunyCode Domain Detection?
PunyCode Domain Detection je rozšíření Chrome vyvinuté Warpdesign, a jeho hlavní funkcí je „This extension attempts to detect PunyCode domain phishing attack“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření PunyCode Domain Detection
Stáhněte si soubory rozšíření PunyCode Domain Detection ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This extension attempts to detect phishing with unicode domains. See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.
Základní Informace o Rozšíření
Název | PunyCode Domain Detection |
ID | fkenopinnpinfcjneoanjoimhkmdcjne |
Oficiální URL | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
Popis | This extension attempts to detect PunyCode domain phishing attack |
Velikost souboru | 14.15 KB |
Počet instalací | 1,411 |
Aktuální Verze | 0.0.2 |
Poslední Aktualizace | 2017-04-18 |
Datum Vydání | 2017-04-18 |
Hodnocení | 4.00/5 Celkem 5 Hodnocení |
Vývojář | Warpdesign |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/warpdesign/puny-phishing-detection |
URL Stránky Nápovědy | https://github.com/warpdesign/puny-phishing-detection |
Podporované Jazyky | 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\/" ] } |