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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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 } |