Metal.js Developer Tools

Developer tool for inspecting Metal.js Components

Metal.js Developer Tools là gì?

Metal.js Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi bryceosterhaus, và tính năng chính của nó là "Developer tool for inspecting Metal.js Components".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Metal.js Developer Tools

Tải xuống các tệp mở rộng Metal.js Developer Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Metal.js Developer Tools Metal.js Developer Tools
ID fagnjmppkokolnbloalifcmcooldhiik
URL Chính Thức https://chromewebstore.google.com/detail/metaljs-developer-tools/fagnjmppkokolnbloalifcmcooldhiik
Mô tả Developer tool for inspecting Metal.js Components
Kích Thước Tệp 144 KB
Số Lần Cài Đặt 109
Phiên Bản Hiện Tại 1.2.5
Cập Nhật Lần Cuối 2017-10-27
Ngày Phát Hành 2017-10-26
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển bryceosterhaus
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/metal/metal-devtools
URL Trang Trợ Giúp https://github.com/metal/metal-devtools
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}