Marty Developer Tools

Developer tools for Marty

What is Marty Developer Tools?

Marty Developer Tools is a Chrome extension developed by jhollingworth, and its main feature is "Developer tools for Marty".

Extension Screenshots

screenshot

Download Marty Developer Tools Extension CRX File

Download Marty Developer Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
Official URL https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Description Developer tools for Marty
File Size 2.36 MB
Installation Count 84
Current Version 0.10.1
Last Updated 2015-05-27
Publish Date 2015-05-27
Rating 5.00/5 Total 3 Ratings
Developer jhollingworth
Payment Type free
Extension Website http://martyjs.org
Supported Languages 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\/*"
    ]
}