Atma.js DevTool

Development Tool to develop, inspect and debug Atma.js Components

Что такое Atma.js DevTool?

Atma.js DevTool - это расширение Chrome, разработанное https://atmajs.com, и его основная функция - "Development Tool to develop, inspect and debug Atma.js Components".

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

screenshot
screenshot

Скачать файл CRX расширения Atma.js DevTool

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

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

                        Features:

- Components tree
- Highlight components child-elements
- Expose `$c` to manipulate with the selected component
- Inspect components properties, bindings, slots and resources

Quick demo:
- Install the extension
- Navigate to: http://todomvc.com/labs/architecture-examples/atmajs/
- Open the DevTools and select the Atma.js tab                    

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

Название Atma.js DevTool Atma.js DevTool
ID bpaepkmcmoablpdahclhdceapndfhdpo
Официальный URL https://chromewebstore.google.com/detail/atmajs-devtool/bpaepkmcmoablpdahclhdceapndfhdpo
Описание Development Tool to develop, inspect and debug Atma.js Components
Размер файла 201 KB
Количество установок 139
Текущая Версия 0.2.2
Последнее Обновление 2014-09-30
Дата публикации 2014-09-29
Разработчик https://atmajs.com
Тип оплаты free
URL страницы помощи https://github.com/atmajs/atma-chrome-ext/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Atma.js DevTool",
    "version": "0.2.2",
    "description": "Development Tool to develop, inspect and debug Atma.js Components",
    "devtools_page": "devtools.html",
    "manifest_version": 2,
    "content_security_policy": "default-src 'self'  chrome-extension-resource: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval';  connect-src *; frame-src *;",
    "web_accessible_resources": [
        "*"
    ],
    "background": {
        "scripts": [
            "lib\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "",
        "contextMenus"
    ],
    "icons": {
        "16": "\/image\/logo\/16.png",
        "48": "\/image\/logo\/48.png",
        "128": "\/image\/logo\/128.png"
    }
}