Anti Anti Debug

Be able to use developer tools again

O que é Anti Anti Debug?

Anti Anti Debug é uma extensão do Chrome desenvolvida por Andrew S, e sua principal característica é "Be able to use developer tools again".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Anti Anti Debug

Baixe arquivos de extensão Anti Anti Debug 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

                        Allows you to use developer tools on websites which utilize anti-debug techniques such as:

1. Repeated calls to debugger
2. getter traps
3. Console.clear() spam

What it does:

1. console.clear and console.table are set to do nothing.
2. console.log is overridden to filter DOM elements, functions, and objects with custom getters
3. Functions containing debugger calls are removed
4. setInterval checks for anti debugging scripts

Troubleshooting Tips:

1. Open devtools in new window, otherwise sites may detect using viewport width/height information
2. Disable source maps in devtools. Some sites will detect when source maps are automatically loaded through the devtools
3. Open devtools first, and then navigate to the site

Please report any issues to the Github:
https://github.com/Andrews54757/Anti-Anti-Debug/issues

This extension may break some websites which rely on certain specific logging tools. It is recommended to enable the extension only when needed.

Debug icons created by Alfian Dwi Hartanto - Flaticon                    

Informações Básicas da Extensão

Nome Anti Anti Debug Anti Anti Debug
ID mnmnmcmdkigakhlfkcdimghndnmomfeo
URL Oficial https://chromewebstore.google.com/detail/anti-anti-debug/mnmnmcmdkigakhlfkcdimghndnmomfeo
Descrição Be able to use developer tools again
Tamanho do Arquivo 14.59 KB
Contagem de Instalações 942
Versão Atual 1.0.6
Última Atualização 2023-12-29
Data de Publicação 2023-02-03
Classificação 4.42/5 Total de 12 Avaliações
Desenvolvedor Andrew S
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Andrews54757/Anti-Anti-Debug
URL da Página de Ajuda https://github.com/Andrews54757/Anti-Anti-Debug/issues
URL da Página de Política de Privacidade https://gist.github.com/Andrews54757/5e5ed6fec4d431b3630150d96bd73769
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Anti Anti Debug",
    "description": "Be able to use developer tools again",
    "version": "1.0.6",
    "author": "Andrew S",
    "icons": {
        "16": "debug-16.png",
        "48": "debug-48.png",
        "128": "debug-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js",
                "anti-anti-debug.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "anti-anti-debug@andrews",
            "strict_min_version": "109.0"
        }
    }
}