Marty Developer Tools

Developer tools for Marty

Co je Marty Developer Tools?

Marty Developer Tools je rozšíření Chrome vyvinuté jhollingworth, a jeho hlavní funkcí je „Developer tools for Marty“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Marty Developer Tools

Stáhněte si soubory rozšíření Marty Developer Tools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
Oficiální URL https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Popis Developer tools for Marty
Velikost souboru 2.36 MB
Počet instalací 84
Aktuální Verze 0.10.1
Poslední Aktualizace 2015-05-27
Datum Vydání 2015-05-27
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář jhollingworth
Typ Platby free
Webové stránky Rozšíření http://martyjs.org
Podporované Jazyky 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\/*"
    ]
}