ng-inspector for AngularJS

Inspector pane for AngularJS apps

ng-inspector for AngularJS क्या है?

ng-inspector for AngularJS http://ng-inspector.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inspector pane for AngularJS apps"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ng-inspector for AngularJS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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/                    

एक्सटेंशन की मूल जानकारी

नाम ng-inspector for AngularJS ng-inspector for AngularJS
ID aadgmnobpdmgmigaicncghmmoeflnamj
आधिकारिक URL https://chrome.google.com/webstore/detail/ng-inspector-for-angularj/aadgmnobpdmgmigaicncghmmoeflnamj
विवरण Inspector pane for AngularJS apps
फ़ाइल का आकार 107 KB
स्थापना संख्या 40,000
वर्तमान संस्करण 0.5.10
अंतिम अपडेट 2015-04-16
प्रकाशन तिथि 2015-04-16
रेटिंग 3.70/5 कुल 290 रेटिंग्स
डेवलपर http://ng-inspector.org
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://ng-inspector.org
सहायता पृष्ठ URL https://github.com/rev087/ng-inspector/issues/
समर्थित भाषाएँ 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\/*"
    ]
}