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