JSADD - JavaScript Anti-Debugging Detection
Detects the presence of common anti-debugging techniques implemented in a website.
O que é JSADD - JavaScript Anti-Debugging Detection?
JSADD - JavaScript Anti-Debugging Detection é uma extensão do Chrome desenvolvida por Niklas Entschladen, e sua principal característica é "Detects the presence of common anti-debugging techniques implemented in a website.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão JSADD - JavaScript Anti-Debugging Detection
Baixe arquivos de extensão JSADD - JavaScript Anti-Debugging 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
Detects the presence of common anti-debugging techniques implemented in a website. This Chrome extension especially targets people with an interest in IT security.
Informações Básicas da Extensão
Nome | JSADD - JavaScript Anti-Debugging Detection |
ID | anebcnjpiakdhcnghhhndapcibdpgjcc |
URL Oficial | https://chromewebstore.google.com/detail/jsadd-javascript-anti-deb/anebcnjpiakdhcnghhhndapcibdpgjcc |
Descrição | Detects the presence of common anti-debugging techniques implemented in a website. |
Tamanho do Arquivo | 111 KB |
Contagem de Instalações | 19 |
Versão Atual | 0.0.0.2 |
Última Atualização | 2023-05-03 |
Data de Publicação | 2023-03-26 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Niklas Entschladen |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.freeprivacypolicy.com/live/28cfae88-422e-46e5-aab4-5e210689e4ce |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSADD - JavaScript Anti-Debugging Detection", "version": "0.0.0.2", "description": "Detects the presence of common anti-debugging techniques implemented in a website.", "author": "Niklas Entschladen", "permissions": [ "debugger", "scripting", "storage", "tabs", "webNavigation" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": ".\/assets\/icons\/jsadd_16.png", "32": ".\/assets\/icons\/jsadd_32.png", "48": ".\/assets\/icons\/jsadd_48.png", "128": ".\/assets\/icons\/jsadd_128.png" }, "background": { "service_worker": ".\/src\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/src\/content\/contentScript.js" ], "run_at": "document_start" } ], "action": { "default_title": "JSADD", "default_popup": ".\/src\/popup\/popup.html" }, "options_page": ".\/src\/options\/options.html", "manifest_version": 3 } |