Ember Console Utils

Load ember console utils js as local file

Что такое Ember Console Utils?

Ember Console Utils - это расширение Chrome, разработанное korniholio, и его основная функция - "Load ember console utils js as local file".

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

screenshot

Скачать файл CRX расширения Ember Console Utils

Скачайте файлы расширений 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"
    ]
}