JSADD - JavaScript Anti-Debugging Detection

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

Qu'est-ce que JSADD - JavaScript Anti-Debugging Detection ?

JSADD - JavaScript Anti-Debugging Detection est une extension Chrome développée par Niklas Entschladen, et sa fonction principale est "Detects the presence of common anti-debugging techniques implemented in a website.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension JSADD - JavaScript Anti-Debugging Detection

Téléchargez les fichiers d'extension JSADD - JavaScript Anti-Debugging Detection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom JSADD - JavaScript Anti-Debugging Detection JSADD - JavaScript Anti-Debugging Detection
ID anebcnjpiakdhcnghhhndapcibdpgjcc
URL Officiel https://chromewebstore.google.com/detail/jsadd-javascript-anti-deb/anebcnjpiakdhcnghhhndapcibdpgjcc
Description Detects the presence of common anti-debugging techniques implemented in a website.
Taille du Fichier 111 KB
Nombre d'Installations 19
Version Actuelle 0.0.0.2
Dernière Mise à Jour 2023-05-03
Date de Publication 2023-03-26
Évaluation 5.00/5 Total 2 Évaluations
Développeur Niklas Entschladen
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.freeprivacypolicy.com/live/28cfae88-422e-46e5-aab4-5e210689e4ce
Langues Prises en Charge 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
}