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\/" ] } |