Atma.js DevTool

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

What is Atma.js DevTool?

Atma.js DevTool is a Chrome extension developed by https://atmajs.com, and its main feature is "Development Tool to develop, inspect and debug Atma.js Components".

Extension Screenshots

screenshot
screenshot

Download Atma.js DevTool Extension CRX File

Download Atma.js DevTool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Atma.js DevTool Atma.js DevTool
ID bpaepkmcmoablpdahclhdceapndfhdpo
Official URL https://chromewebstore.google.com/detail/atmajs-devtool/bpaepkmcmoablpdahclhdceapndfhdpo
Description Development Tool to develop, inspect and debug Atma.js Components
File Size 201 KB
Installation Count 139
Current Version 0.2.2
Last Updated 2014-09-30
Publish Date 2014-09-29
Developer https://atmajs.com
Payment Type free
Help Page URL https://github.com/atmajs/atma-chrome-ext/issues
Supported Languages 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"
    }
}