PunyCode Domain Detection
This extension attempts to detect PunyCode domain phishing attack
O que é PunyCode Domain Detection?
PunyCode Domain Detection é uma extensão do Chrome desenvolvida por Warpdesign, e sua principal característica é "This extension attempts to detect PunyCode domain phishing attack".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão PunyCode Domain Detection
Baixe arquivos de extensão PunyCode Domain Detection no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension attempts to detect phishing with unicode domains. See https://www.xudongz.com/blog/2017/idn-phishing/ for more information.
Informações Básicas da Extensão
Nome | PunyCode Domain Detection |
ID | fkenopinnpinfcjneoanjoimhkmdcjne |
URL Oficial | https://chromewebstore.google.com/detail/punycode-domain-detection/fkenopinnpinfcjneoanjoimhkmdcjne |
Descrição | This extension attempts to detect PunyCode domain phishing attack |
Tamanho do Arquivo | 14.15 KB |
Contagem de Instalações | 1,411 |
Versão Atual | 0.0.2 |
Última Atualização | 2017-04-18 |
Data de Publicação | 2017-04-18 |
Classificação | 4.00/5 Total de 5 Avaliações |
Desenvolvedor | Warpdesign |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/warpdesign/puny-phishing-detection |
URL da Página de Ajuda | https://github.com/warpdesign/puny-phishing-detection |
Idiomas Suportados | 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\/" ] } |