JSADD - JavaScript Anti-Debugging Detection

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

Co to jest JSADD - JavaScript Anti-Debugging Detection?

JSADD - JavaScript Anti-Debugging Detection to rozszerzenie Chrome opracowane przez Niklas Entschladen, a jego główną funkcją jest „Detects the presence of common anti-debugging techniques implemented in a website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia JSADD - JavaScript Anti-Debugging Detection

Pobierz pliki rozszerzeń JSADD - JavaScript Anti-Debugging Detection w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa JSADD - JavaScript Anti-Debugging Detection JSADD - JavaScript Anti-Debugging Detection
ID anebcnjpiakdhcnghhhndapcibdpgjcc
Oficjalny URL https://chromewebstore.google.com/detail/jsadd-javascript-anti-deb/anebcnjpiakdhcnghhhndapcibdpgjcc
Opis Detects the presence of common anti-debugging techniques implemented in a website.
Rozmiar pliku 111 KB
Liczba instalacji 19
Aktualna Wersja 0.0.0.2
Ostatnia Aktualizacja 2023-05-03
Data Publikacji 2023-03-26
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Niklas Entschladen
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.freeprivacypolicy.com/live/28cfae88-422e-46e5-aab4-5e210689e4ce
Obsługiwane Języki 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
}