Marty Developer Tools

Developer tools for Marty

Co to jest Marty Developer Tools?

Marty Developer Tools to rozszerzenie Chrome opracowane przez jhollingworth, a jego główną funkcją jest „Developer tools for Marty”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Marty Developer Tools

Pobierz pliki rozszerzeń Marty Developer Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
Oficjalny URL https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Opis Developer tools for Marty
Rozmiar pliku 2.36 MB
Liczba instalacji 84
Aktualna Wersja 0.10.1
Ostatnia Aktualizacja 2015-05-27
Data Publikacji 2015-05-27
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper jhollingworth
Typ Płatności free
Strona Rozszerzenia http://martyjs.org
Obsługiwane Języki 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\/*"
    ]
}