Ember Console Utils

Load ember console utils js as local file

什么是Ember Console Utils?

Ember Console Utils是由korniholio开发的Chrome扩展程序,该扩展的主要功能是“Load ember console utils js as local file”。

扩展截图

screenshot

下载Ember Console Utils扩展crx文件

下载Ember Console Utils扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Ember Console Utils Ember Console Utils
ID idakfpdomghaikfnaakncahffbfpkhjm
官方URL https://chrome.google.com/webstore/detail/ember-console-utils/idakfpdomghaikfnaakncahffbfpkhjm
简介 Load ember console utils js as local file
文件大小 6.99 KB
安装次数 62
当前版本 1.0
更新时间 2014-06-27
上架时间 2014-06-27
开发者 korniholio
付费类型 free
扩展官网 https://github.com/ebryn/ember-console-utils
支持的语言 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"
    ]
}