Ember Console Utils

Load ember console utils js as local file

What is Ember Console Utils?

Ember Console Utils is a Chrome extension developed by korniholio, and its main feature is "Load ember console utils js as local file".

Extension Screenshots

screenshot

Download Ember Console Utils Extension CRX File

Download Ember Console Utils 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

                        An extension, which adds the super-handy ebryn's ember-console-utils to any opened tab locally, whithout the need to include the library in your project.

With ember-console-utils you can inspect $0.controller(), $0.model(), $0.template() and $0.view() for any inspected DOM element.

All credits go to: https://github.com/ebryn.

You can check out the library on: https://github.com/ebryn/ember-console-utils                    

Extension Basic Information

Name Ember Console Utils Ember Console Utils
ID idakfpdomghaikfnaakncahffbfpkhjm
Official URL https://chrome.google.com/webstore/detail/ember-console-utils/idakfpdomghaikfnaakncahffbfpkhjm
Description Load ember console utils js as local file
File Size 6.99 KB
Installation Count 62
Current Version 1.0
Last Updated 2014-06-27
Publish Date 2014-06-27
Developer korniholio
Payment Type free
Extension Website https://github.com/ebryn/ember-console-utils
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ember Console Utils",
    "description": "Load ember console utils js as local file",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "ember-console-utils.js",
                "register-utils.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "ember-console-utils.js",
        "register-utils.js"
    ]
}