Anti Anti Debug

Be able to use developer tools again

Anti Anti Debug란 무엇입니까?

Anti Anti Debug은(는) Andrew S에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Be able to use developer tools again"입니다.

확장 프로그램 스크린샷

screenshot

Anti Anti Debug 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Anti Anti Debug Anti Anti Debug
ID mnmnmcmdkigakhlfkcdimghndnmomfeo
공식 URL https://chromewebstore.google.com/detail/anti-anti-debug/mnmnmcmdkigakhlfkcdimghndnmomfeo
설명 Be able to use developer tools again
파일 크기 14.59 KB
설치 횟수 942
현재 버전 1.0.6
최근 업데이트 2023-12-29
출시 날짜 2023-02-03
평점 4.42/5 총 12 개의 평점
개발자 Andrew S
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Andrews54757/Anti-Anti-Debug
도움말 페이지 URL https://github.com/Andrews54757/Anti-Anti-Debug/issues
개인정보 보호 정책 페이지 URL https://gist.github.com/Andrews54757/5e5ed6fec4d431b3630150d96bd73769
지원되는 언어 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"
        }
    }
}