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 |
官方網址 | 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 } |