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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Niklas Entschladen และคุณลักษณะหลักของมันคือ "Detects the presence of common anti-debugging techniques implemented in a website."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSADD - JavaScript Anti-Debugging Detection
ดาวน์โหลดไฟล์ส่วนขยาย 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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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
} | |