Jalangi2

Jalangi2 Chrome Extension for Javascript code analysis

Jalangi2란 무엇입니까?

Jalangi2은(는) gembigfan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Jalangi2 Chrome Extension for Javascript code analysis"입니다.

확장 프로그램 스크린샷

screenshot

Jalangi2 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Jalangi2 Jalangi2
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"
    ]
}