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文件

下载Ember Inspector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}