ng-inspector for AngularJS

Inspector pane for AngularJS apps

Was ist ng-inspector for AngularJS?

ng-inspector for AngularJS ist eine Chrome-Erweiterung, die von http://ng-inspector.org entwickelt wurde, und ihr Hauptmerkmal ist "Inspector pane for AngularJS apps".

Erweiterungsscreenshots

screenshot

ng-inspector for AngularJS-Erweiterungs-CRX-Datei herunterladen

Laden Sie ng-inspector for AngularJS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name ng-inspector for AngularJS ng-inspector for AngularJS
ID aadgmnobpdmgmigaicncghmmoeflnamj
Offizielle URL https://chrome.google.com/webstore/detail/ng-inspector-for-angularj/aadgmnobpdmgmigaicncghmmoeflnamj
Beschreibung Inspector pane for AngularJS apps
Dateigröße 107 KB
Installationsanzahl 40,000
Aktuelle Version 0.5.10
Letztes Update 2015-04-16
Veröffentlichungsdatum 2015-04-16
Bewertung 3.70/5 Insgesamt 290 Bewertungen
Entwickler http://ng-inspector.org
Zahlungsart free
Erweiterungswebsite http://ng-inspector.org
Hilfeseite URL https://github.com/rev087/ng-inspector/issues/
Unterstützte Sprachen 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\/*"
    ]
}