Marty Developer Tools

Developer tools for Marty

Marty Developer Toolsとは何ですか?

Marty Developer Toolsはjhollingworthによって開発されたChromeの拡張機能で、その主な機能は「Developer tools for Marty」です。

拡張機能のスクリーンショット

screenshot

Marty Developer Tools拡張機能のCRXファイルをダウンロード

Marty Developer Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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\/*"
    ]
}