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