PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Vad är PunyCode Domain Detection?
PunyCode Domain Detection är en Chrome-tillägg utvecklad av Warpdesign, och dess huvudfunktion är "This extension attempts to detect PunyCode domain phishing attack".
Tilläggsskärmbilder
Ladda ner PunyCode Domain Detection-förlängningens CRX-fil
Ladda ner PunyCode Domain Detection-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension attempts to detect phishing with unicode domains. See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.
Grundläggande Information om Tillägg
Namn | PunyCode Domain Detection |
ID | fkenopinnpinfcjneoanjoimhkmdcjne |
Officiell webbadress | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
Beskrivning | This extension attempts to detect PunyCode domain phishing attack |
Filstorlek | 14.15 KB |
Antal Installationer | 1,411 |
Aktuell Version | 0.0.2 |
Senast Uppdaterad | 2017-04-18 |
Publiceringsdatum | 2017-04-18 |
Betyg | 4.00/5 Totalt 5 Betyg |
Utvecklare | Warpdesign |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/warpdesign/puny-phishing-detection |
Hjälpsida URL | https://github.com/warpdesign/puny-phishing-detection |
Stödda Språk | 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\/" ] } |