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