ng-inspector for AngularJS

Inspector pane for AngularJS apps

ng-inspector for AngularJS란 무엇입니까?

ng-inspector for AngularJS은(는) http://ng-inspector.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inspector pane for AngularJS apps"입니다.

확장 프로그램 스크린샷

screenshot

ng-inspector for AngularJS 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}