ng-inspector for AngularJS

Inspector pane for AngularJS apps

ما هو ng-inspector for AngularJS؟

ng-inspector for AngularJS هو إضافة Chrome تم تطويرها بواسطة http://ng-inspector.org، والميزة الرئيسية لها هي "Inspector pane for AngularJS apps".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ng-inspector for AngularJS

قم بتنزيل ملفات الامتداد ng-inspector for AngularJS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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\/*"
    ]
}