AngularJS Inspect Watchers

Inspect the scope watchers of an Angular app

AngularJS Inspect Watchers là gì?

AngularJS Inspect Watchers là một tiện ích mở rộng Chrome được phát triển bởi https://ryanoglesby08.github.io, và tính năng chính của nó là "Inspect the scope watchers of an Angular app".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng AngularJS Inspect Watchers 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

                        A Chrome extension that lets the user inspect the number of Angular watchers that exist on any element of an Angular app.

***** 4/20/2015 Update! 
I just released v1.0.0 of the extension, which moves the extension from a Browser Action to a Page Action (icon appears in the address bar). A Page Action is more appropriate for this extension because the features only makes sense for a few web pages, those with AngularJS running.

Usage:
Once installed, navigate to your Angular app and click the Page Action in the address bar to activate the extension. Then, hover your mouse over different sections of your Angular application to see the scopes and watchers highlighted in red. Click the Page Action again to deactivate.

Motivation:
It is a well known fact that as the number of watchers in an Angular app increases, the digest cycle performance decreases. In Angular 1.3, anything over 2,000 watchers will dramatically effect performance. This extension can help you easily monitor the number of watchers you are adding.

Troubleshooting
I don't see the Page Action! What do I do? --> Ng Inspect Watchers can only be used on AngularJS apps that have debug info enabled. If you navigate to any web page that is either not an AngularJS app, or does not have debug info enabled, you will not be able to use the extension. 

How do I enable debug info? --> The extension relies on the presence of `.ng-scope` and `.ng-isolate-scope` CSS class names. If you have run `$compileProvider.debugInfoEnabled(false);` on your app, it won't work. To get the classes back, you can run `angular.reloadWithDebugInfo();` in the console and try again. See https://docs.angularjs.org/guide/production#disabling-debug-data for more info.                    

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

Tên AngularJS Inspect Watchers AngularJS Inspect Watchers
ID gdfcinoagafkodbnkjemaajfahnmfkhg
URL Chính Thức https://chromewebstore.google.com/detail/angularjs-inspect-watcher/gdfcinoagafkodbnkjemaajfahnmfkhg
Mô tả Inspect the scope watchers of an Angular app
Kích Thước Tệp 35.49 KB
Số Lần Cài Đặt 4,865
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-07-26
Ngày Phát Hành 2015-07-26
Đánh Giá 3.10/5 Tổng số 21 Đánh Giá
Nhà Phát Triển https://ryanoglesby08.github.io
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ryanoglesby08/ng-inspect-watchers
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AngularJS Inspect Watchers",
    "description": "Inspect the scope watchers of an Angular app",
    "version": "1.0.1",
    "icons": {
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "assets\/icons\/icon19-gray.png",
            "38": "assets\/icons\/icon38-gray.png"
        },
        "default_title": "Click to activate Ng Inspect Watchers"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/ng_inspect_watchers.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "src\/page_action.js",
            "src\/tab_status_monitor.js"
        ]
    },
    "permissions": [
        "declarativeContent",
        "activeTab"
    ]
}