Marty Developer Tools

Developer tools for Marty

Marty Developer Tools란 무엇입니까?

Marty Developer Tools은(는) jhollingworth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Developer tools for Marty"입니다.

확장 프로그램 스크린샷

screenshot

Marty Developer Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Marty Developer Tools is an extension to Chrome's developer tools. It shows you the current state of your stores, actions that have flowed through the application as well as allowing you to revert to an earlier state. For each action we will show:

* Which stores handled the action
* What arguments were passed to the stores action handler
* What components re-rendered as a result of the action (and how many)
* Which stores caused a component to re-render                    

확장 프로그램 기본 정보

이름 Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
공식 URL https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
설명 Developer tools for Marty
파일 크기 2.36 MB
설치 횟수 84
현재 버전 0.10.1
최근 업데이트 2015-05-27
출시 날짜 2015-05-27
평점 5.00/5 총 3 개의 평점
개발자 jhollingworth
결제 유형 free
확장 프로그램 웹 사이트 http://martyjs.org
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Marty Developer Tools",
    "version": "0.10.1",
    "description": "Developer tools for Marty",
    "devtools_page": "app\/devtools\/index.html",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "app\/content\/needle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "app\/*"
    ]
}