PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Qu'est-ce que PunyCode Domain Detection ?
PunyCode Domain Detection est une extension Chrome développée par Warpdesign, et sa fonction principale est "This extension attempts to detect PunyCode domain phishing attack".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension PunyCode Domain Detection
Téléchargez les fichiers d'extension PunyCode Domain Detection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension attempts to detect phishing with unicode domains. See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.
Informations de Base sur l'Extension
Nom | PunyCode Domain Detection |
ID | fkenopinnpinfcjneoanjoimhkmdcjne |
URL Officiel | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
Description | This extension attempts to detect PunyCode domain phishing attack |
Taille du Fichier | 14.15 KB |
Nombre d'Installations | 1,411 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2017-04-18 |
Date de Publication | 2017-04-18 |
Évaluation | 4.00/5 Total 5 Évaluations |
Développeur | Warpdesign |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/warpdesign/puny-phishing-detection |
URL de la Page d'Aide | https://github.com/warpdesign/puny-phishing-detection |
Langues Prises en Charge | 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\/" ] } |