Ember Console Utils

Load ember console utils js as local file

Co to jest Ember Console Utils?

Ember Console Utils to rozszerzenie Chrome opracowane przez korniholio, a jego główną funkcją jest „Load ember console utils js as local file”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Ember Console Utils

Pobierz pliki rozszerzeń Ember Console Utils w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Ember Console Utils Ember Console Utils
ID idakfpdomghaikfnaakncahffbfpkhjm
Oficjalny URL https://chrome.google.com/webstore/detail/ember-console-utils/idakfpdomghaikfnaakncahffbfpkhjm
Opis Load ember console utils js as local file
Rozmiar pliku 6.99 KB
Liczba instalacji 62
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-06-27
Data Publikacji 2014-06-27
Deweloper korniholio
Typ Płatności free
Strona Rozszerzenia https://github.com/ebryn/ember-console-utils
Obsługiwane Języki 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"
    ]
}