Metal.js Developer Tools

Developer tool for inspecting Metal.js Components

什麼是Metal.js Developer Tools?

Metal.js Developer Tools是由bryceosterhaus開發的Chrome擴展程式,該擴展的主要功能是“Developer tool for inspecting Metal.js Components”。

擴展截圖

screenshot
screenshot

下載Metal.js Developer Tools擴展crx文件

下載Metal.js Developer Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Metal Developer Tools is a Chrome extension for the Metal.js javascript framework. It allows you to inspect the Metal component hierarchies in the Chrome Developer Tools.

You will get a new tab called Metal.js in your developer tools. This will show you the Metal components that were rendered on the page, as well as their state in the sidebar.                    

擴展基本資訊

名稱 Metal.js Developer Tools Metal.js Developer Tools
ID fagnjmppkokolnbloalifcmcooldhiik
官方網址 https://chromewebstore.google.com/detail/metaljs-developer-tools/fagnjmppkokolnbloalifcmcooldhiik
簡介 Developer tool for inspecting Metal.js Components
檔案大小 144 KB
安裝次數 109
目前版本 1.2.5
更新時間 2017-10-27
上架時間 2017-10-26
評分 5.00/5 共 2 次評分
開發者 bryceosterhaus
付費類型 free
擴展官網 https://github.com/metal/metal-devtools
說明頁面URL https://github.com/metal/metal-devtools
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Metal.js Developer Tools",
    "short_name": "Metal Devtools",
    "version": "1.2.5",
    "description": "Developer tool for inspecting Metal.js Components",
    "author": "Bryce Osterhaus",
    "homepage_url": "https:\/\/github.com\/metal\/metal-devtools",
    "icons": {
        "48": "build\/metal_48.png",
        "128": "build\/metal_128.png"
    },
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "build\/metal_48_gray.png",
        "default_popup": "build\/popup.html",
        "default_title": "Metal.js Devtools"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/initializer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "build\/devtools.html",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}