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文件

下载JSADD - JavaScript Anti-Debugging Detection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}