JSADD - JavaScript Anti-Debugging Detection

Detects the presence of common anti-debugging techniques implemented in a website.

JSADD - JavaScript Anti-Debugging Detection란 무엇입니까?

JSADD - JavaScript Anti-Debugging Detection은(는) Niklas Entschladen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detects the presence of common anti-debugging techniques implemented in a website."입니다.

확장 프로그램 스크린샷

screenshot

JSADD - JavaScript Anti-Debugging Detection 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Detects the presence of common anti-debugging techniques implemented in a website.
This Chrome extension especially targets people with an interest in IT security.                    

확장 프로그램 기본 정보

이름 JSADD - JavaScript Anti-Debugging Detection JSADD - JavaScript Anti-Debugging Detection
ID anebcnjpiakdhcnghhhndapcibdpgjcc
공식 URL https://chromewebstore.google.com/detail/jsadd-javascript-anti-deb/anebcnjpiakdhcnghhhndapcibdpgjcc
설명 Detects the presence of common anti-debugging techniques implemented in a website.
파일 크기 111 KB
설치 횟수 19
현재 버전 0.0.0.2
최근 업데이트 2023-05-03
출시 날짜 2023-03-26
평점 5.00/5 총 2 개의 평점
개발자 Niklas Entschladen
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/28cfae88-422e-46e5-aab4-5e210689e4ce
지원되는 언어 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
}