ng-inspector for AngularJS

Inspector pane for AngularJS apps

ng-inspector for AngularJS là gì?

ng-inspector for AngularJS là một tiện ích mở rộng Chrome được phát triển bởi http://ng-inspector.org, và tính năng chính của nó là "Inspector pane for AngularJS apps".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ng-inspector for AngularJS

Tải xuống các tệp mở rộng ng-inspector for AngularJS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ng-inspector for AngularJS ng-inspector for AngularJS
ID aadgmnobpdmgmigaicncghmmoeflnamj
URL Chính Thức https://chrome.google.com/webstore/detail/ng-inspector-for-angularj/aadgmnobpdmgmigaicncghmmoeflnamj
Mô tả Inspector pane for AngularJS apps
Kích Thước Tệp 107 KB
Số Lần Cài Đặt 40,000
Phiên Bản Hiện Tại 0.5.10
Cập Nhật Lần Cuối 2015-04-16
Ngày Phát Hành 2015-04-16
Đánh Giá 3.70/5 Tổng số 290 Đánh Giá
Nhà Phát Triển http://ng-inspector.org
Loại Thanh Toán free
Trang Web Mở Rộng http://ng-inspector.org
URL Trang Trợ Giúp https://github.com/rev087/ng-inspector/issues/
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}