PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
Cos'è PunyCode Domain Detection?
PunyCode Domain Detection è un'estensione di Chrome sviluppata da Warpdesign, e la sua funzione principale è "This extension attempts to detect PunyCode domain phishing attack".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PunyCode Domain Detection
Scarica i file di estensione PunyCode Domain Detection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension attempts to detect phishing with unicode domains.
See https://www.xudongz.com/blog/2017/idn-phishing/ for more information. Informazioni di Base sull'Estensione
| Nome | |
| ID | fkenopinnpinfcjneoanjoimhkmdcjne |
| URL Ufficiale | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
| Descrizione | This extension attempts to detect PunyCode domain phishing attack |
| Dimensione del File | 14.15 KB |
| Conteggio Installazioni | 1,411 |
| Versione Corrente | 0.0.2 |
| Ultimo Aggiornamento | 2017-04-18 |
| Data di Pubblicazione | 2017-04-18 |
| Valutazione | 4.00/5 Totale 5 Valutazioni |
| Sviluppatore | Warpdesign |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/warpdesign/puny-phishing-detection |
| URL della Pagina di Aiuto | https://github.com/warpdesign/puny-phishing-detection |
| Lingue Supportate | 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\/"
]
} | |