Ember Inspector

Tool for debugging Ember applications.

Ember Inspector là gì?

Ember Inspector là một tiện ích mở rộng Chrome được phát triển bởi https://www.emberjs.com, và tính năng chính của nó là "Tool for debugging Ember applications.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        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.                    

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

Tên Ember Inspector Ember Inspector
ID bmdblncegkenkacieihfhpjfppoconhi
URL Chính Thức https://chromewebstore.google.com/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi
Mô tả Tool for debugging Ember applications.
Kích Thước Tệp 3.49 MB
Số Lần Cài Đặt 39,052
Phiên Bản Hiện Tại 4.11.0
Cập Nhật Lần Cuối 2024-02-08
Ngày Phát Hành 2020-05-15
Đánh Giá 4.79/5 Tổng số 345 Đánh Giá
Nhà Phát Triển https://www.emberjs.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.emberjs.com
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}