Jalangi2
Jalangi2 Chrome Extension for Javascript code analysis
Jalangi2とは何ですか?
Jalangi2はgembigfanによって開発されたChromeの拡張機能で、その主な機能は「Jalangi2 Chrome Extension for Javascript code analysis」です。
拡張機能のスクリーンショット
Jalangi2拡張機能のCRXファイルをダウンロード
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" ] } |