JSADD - JavaScript Anti-Debugging Detection
Detects the presence of common anti-debugging techniques implemented in a website.
Vad är JSADD - JavaScript Anti-Debugging Detection?
JSADD - JavaScript Anti-Debugging Detection är en Chrome-tillägg utvecklad av Niklas Entschladen, och dess huvudfunktion är "Detects the presence of common anti-debugging techniques implemented in a website.".
Tilläggsskärmbilder
Ladda ner JSADD - JavaScript Anti-Debugging Detection-förlängningens CRX-fil
Ladda ner JSADD - JavaScript Anti-Debugging Detection-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Detects the presence of common anti-debugging techniques implemented in a website. This Chrome extension especially targets people with an interest in IT security.
Grundläggande Information om Tillägg
Namn | JSADD - JavaScript Anti-Debugging Detection |
ID | anebcnjpiakdhcnghhhndapcibdpgjcc |
Officiell webbadress | https://chromewebstore.google.com/detail/jsadd-javascript-anti-deb/anebcnjpiakdhcnghhhndapcibdpgjcc |
Beskrivning | Detects the presence of common anti-debugging techniques implemented in a website. |
Filstorlek | 111 KB |
Antal Installationer | 19 |
Aktuell Version | 0.0.0.2 |
Senast Uppdaterad | 2023-05-03 |
Publiceringsdatum | 2023-03-26 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Niklas Entschladen |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.freeprivacypolicy.com/live/28cfae88-422e-46e5-aab4-5e210689e4ce |
Stödda Språk | 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 } |