Ember Console Utils

Load ember console utils js as local file

Vad är Ember Console Utils?

Ember Console Utils är en Chrome-tillägg utvecklad av korniholio, och dess huvudfunktion är "Load ember console utils js as local file".

Tilläggsskärmbilder

screenshot

Ladda ner Ember Console Utils-förlängningens CRX-fil

Ladda ner Ember Console Utils-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Ember Console Utils Ember Console Utils
ID idakfpdomghaikfnaakncahffbfpkhjm
Officiell webbadress https://chrome.google.com/webstore/detail/ember-console-utils/idakfpdomghaikfnaakncahffbfpkhjm
Beskrivning Load ember console utils js as local file
Filstorlek 6.99 KB
Antal Installationer 62
Aktuell Version 1.0
Senast Uppdaterad 2014-06-27
Publiceringsdatum 2014-06-27
Utvecklare korniholio
Betalningssätt free
Tilläggswebbplats https://github.com/ebryn/ember-console-utils
Stödda Språk 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"
    ]
}