Jalangi2
Jalangi2 Chrome Extension for Javascript code analysis
Jalangi2คืออะไร?
Jalangi2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gembigfan และคุณลักษณะหลักของมันคือ "Jalangi2 Chrome Extension for Javascript code analysis"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jalangi2
ดาวน์โหลดไฟล์ส่วนขยาย Jalangi2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is Chrome extension (Devtool) for Jalangi2 to perform dynamic javascript analysis. A user can easily implement their own user-script to perform customized javascript analysis such as finding bugs, performance problems and taint analysis. Prerequisites: 1. python 2. node 3. mitmproxy Steps for installation: 1. git clone https://[email protected]/jedihy/jalangi2-chrome.git 2. cd jalangi2 3. npm install 4. mitmdump -p 9999 --anticache -s "jalangi2/scripts/proxy.py --inlineIID --inlineSource" In this version, you have to use port 9999 for mitmdump because the port number is hardcoded in the extension.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | bjchnamfmkkcejgiacanfhnokbchijoj |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/jalangi2/bjchnamfmkkcejgiacanfhnokbchijoj |
คำอธิบาย | Jalangi2 Chrome Extension for Javascript code analysis |
ขนาดไฟล์ | 1.45 MB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2016-11-30 |
วันที่เผยแพร่ | 2016-11-30 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | gembigfan |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jalangi2", "version": "0.1", "description": "Jalangi2 Chrome Extension for Javascript code analysis", "devtools_page": "proxy.html", "manifest_version": 2, "web_accessible_resources": [ "*" ], "icons": { "16": "logo.png", "32": "logo.png", "128": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "injector.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "proxy", "activeTab", "http:\/\/*\/", "https:\/\/*\/", "*:\/\/*\/*", "tabs" ] } |