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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects the presence of common anti-debugging techniques implemented in a website."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में JSADD - JavaScript Anti-Debugging Detection एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 } |