PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Wat is PunyCode Domain Detection?
PunyCode Domain Detection is een Chrome-extensie ontwikkeld door Warpdesign, en de belangrijkste functie is "This extension attempts to detect PunyCode domain phishing attack".
Extensie Screenshots
Download het CRX-bestand van de extensie PunyCode Domain Detection
Download PunyCode Domain Detection-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension attempts to detect phishing with unicode domains. See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.
Basisinformatie over de Extensie
Naam | PunyCode Domain Detection |
ID | fkenopinnpinfcjneoanjoimhkmdcjne |
Officiële URL | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
Beschrijving | This extension attempts to detect PunyCode domain phishing attack |
Bestandsgrootte | 14.15 KB |
Aantal Installaties | 1,411 |
Huidige Versie | 0.0.2 |
Laatst Bijgewerkt | 2017-04-18 |
Publicatiedatum | 2017-04-18 |
Beoordeling | 4.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Warpdesign |
Betalingswijze | free |
Extensiewebsite | https://github.com/warpdesign/puny-phishing-detection |
Help Pagina-URL | https://github.com/warpdesign/puny-phishing-detection |
Ondersteunde Talen | 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\/" ] } |