JSADD - JavaScript Anti-Debugging Detection

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

JSADD - JavaScript Anti-Debugging Detection là gì?

JSADD - JavaScript Anti-Debugging Detection là một tiện ích mở rộng Chrome được phát triển bởi Niklas Entschladen, và tính năng chính của nó là "Detects the presence of common anti-debugging techniques implemented in a website.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng JSADD - JavaScript Anti-Debugging Detection

Tải xuống các tệp mở rộng JSADD - JavaScript Anti-Debugging Detection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JSADD - JavaScript Anti-Debugging Detection JSADD - JavaScript Anti-Debugging Detection
ID anebcnjpiakdhcnghhhndapcibdpgjcc
URL Chính Thức https://chromewebstore.google.com/detail/jsadd-javascript-anti-deb/anebcnjpiakdhcnghhhndapcibdpgjcc
Mô tả Detects the presence of common anti-debugging techniques implemented in a website.
Kích Thước Tệp 111 KB
Số Lần Cài Đặt 19
Phiên Bản Hiện Tại 0.0.0.2
Cập Nhật Lần Cuối 2023-05-03
Ngày Phát Hành 2023-03-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Niklas Entschladen
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/28cfae88-422e-46e5-aab4-5e210689e4ce
Ngôn Ngữ Được Hỗ Trợ 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
}