Marty Developer Tools

Developer tools for Marty

Что такое Marty Developer Tools?

Marty Developer Tools - это расширение Chrome, разработанное jhollingworth, и его основная функция - "Developer tools for Marty".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Marty Developer Tools

Скачайте файлы расширений Marty Developer Tools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
Официальный URL https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Описание Developer tools for Marty
Размер файла 2.36 MB
Количество установок 84
Текущая Версия 0.10.1
Последнее Обновление 2015-05-27
Дата публикации 2015-05-27
Рейтинг 5.00/5 Всего 3 оценок
Разработчик jhollingworth
Тип оплаты free
Официальный сайт расширения http://martyjs.org
Поддерживаемые языки 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\/*"
    ]
}