Marty Developer Tools

Developer tools for Marty

Cos'è Marty Developer Tools?

Marty Developer Tools è un'estensione di Chrome sviluppata da jhollingworth, e la sua funzione principale è "Developer tools for Marty".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Marty Developer Tools

Scarica i file di estensione Marty Developer Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
URL Ufficiale https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Descrizione Developer tools for Marty
Dimensione del File 2.36 MB
Conteggio Installazioni 84
Versione Corrente 0.10.1
Ultimo Aggiornamento 2015-05-27
Data di Pubblicazione 2015-05-27
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore jhollingworth
Tipo di Pagamento free
Sito Web dell'Estensione http://martyjs.org
Lingue Supportate 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\/*"
    ]
}