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