ng-inspector for AngularJS

Inspector pane for AngularJS apps

O que é ng-inspector for AngularJS?

ng-inspector for AngularJS é uma extensão do Chrome desenvolvida por http://ng-inspector.org, e sua principal característica é "Inspector pane for AngularJS apps".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ng-inspector for AngularJS

Baixe arquivos de extensão ng-inspector for AngularJS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        ng-inspector is a browser extension that displays an inspector panel showing the AngularJS scope hierarchy in the current page in real time, as well as which controllers or directives are associated with which scope.

Hovering over a scope in the inspector will highlight the DOM element that scope is attached to. Clicking on a model will console.log that model's contents.

The extension adds a button next to the address bar with the Angular logo that toggles the pane on and off.

Please submit bug reports and suggestions at the GitHub repo: https://github.com/rev087/ng-inspector/issues/                    

Informações Básicas da Extensão

Nome ng-inspector for AngularJS ng-inspector for AngularJS
ID aadgmnobpdmgmigaicncghmmoeflnamj
URL Oficial https://chrome.google.com/webstore/detail/ng-inspector-for-angularj/aadgmnobpdmgmigaicncghmmoeflnamj
Descrição Inspector pane for AngularJS apps
Tamanho do Arquivo 107 KB
Contagem de Instalações 40,000
Versão Atual 0.5.10
Última Atualização 2015-04-16
Data de Publicação 2015-04-16
Classificação 3.70/5 Total de 290 Avaliações
Desenvolvedor http://ng-inspector.org
Tipo de Pagamento free
Site da Extensão http://ng-inspector.org
URL da Página de Ajuda https://github.com/rev087/ng-inspector/issues/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ng-inspector for AngularJS",
    "description": "Inspector pane for AngularJS apps",
    "version": "0.5.10",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        ""
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "btn19.png",
            "38": "btn38.png"
        },
        "default_title": "ng-inspector"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "stylesheet.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "ng-inspector.js",
        "processing.png",
        "icons\/*"
    ]
}