Ember Inspector

Tool for debugging Ember applications.

Ember Inspector란 무엇입니까?

Ember Inspector은(는) https://www.emberjs.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool for debugging Ember applications."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Ember Inspector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Ember Inspector is a plug-in for the Chrome developer tools that makes understanding and debugging your Ember.js application a snap.

After installing this extension, you'll be able to easily:

- View all of the routes defined in your application.
- Reference Ember's naming conventions for your URLs, including what to name your controllers, templates, routes and more.
- Overlay your application with information about what templates, controllers, and models are currently being rendered.
- Inspect the objects in your application, such as models and controllers, with UI that fully supports Ember features such as bindings and computed properties.
- Make your application's objects available in the console as the $E variable.
- If you're using Ember Data, see all of the records that have been loaded.

The Ember Inspector is an open source project maintained by the Ember.js community. The source code is available for download at https://github.com/emberjs/ember-inspector.                    

확장 프로그램 기본 정보

이름 Ember Inspector Ember Inspector
ID bmdblncegkenkacieihfhpjfppoconhi
공식 URL https://chromewebstore.google.com/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi
설명 Tool for debugging Ember applications.
파일 크기 3.49 MB
설치 횟수 39,052
현재 버전 4.11.0
최근 업데이트 2024-02-08
출시 날짜 2020-05-15
평점 4.79/5 총 345 개의 평점
개발자 https://www.emberjs.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.emberjs.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ember Inspector",
    "description": "Tool for debugging Ember applications.",
    "version": "4.11.0",
    "icons": {
        "16": "panes-3-16-0\/assets\/images\/icon16.png",
        "38": "panes-3-16-0\/assets\/images\/icon38.png",
        "48": "panes-3-16-0\/assets\/images\/icon48.png",
        "128": "panes-3-16-0\/assets\/images\/icon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ],
            "world": "MAIN",
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end",
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html",
    "action": {
        "default_icon": {
            "19": "panes-3-16-0\/assets\/images\/icon19_grey.png",
            "38": "panes-3-16-0\/assets\/images\/icon38_grey.png"
        },
        "default_title": "This webpage is not running Ember.js"
    },
    "background": {
        "service_worker": "background.js"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "options_ui": {
        "page": "options-dialog.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "scripts\/in-page-script.js",
                "panes-*\/ember_debug.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}