Marty Developer Tools

Developer tools for Marty

Was ist Marty Developer Tools?

Marty Developer Tools ist eine Chrome-Erweiterung, die von jhollingworth entwickelt wurde, und ihr Hauptmerkmal ist "Developer tools for Marty".

Erweiterungsscreenshots

screenshot

Marty Developer Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Marty Developer Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
Offizielle URL https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Beschreibung Developer tools for Marty
Dateigröße 2.36 MB
Installationsanzahl 84
Aktuelle Version 0.10.1
Letztes Update 2015-05-27
Veröffentlichungsdatum 2015-05-27
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler jhollingworth
Zahlungsart free
Erweiterungswebsite http://martyjs.org
Unterstützte Sprachen 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\/*"
    ]
}