Metal.js Developer Tools

Developer tool for inspecting Metal.js Components

Apa itu Metal.js Developer Tools?

Metal.js Developer Tools adalah ekstensi Chrome yang dikembangkan oleh bryceosterhaus, dan fitur utamanya adalah "Developer tool for inspecting Metal.js Components".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Metal.js Developer Tools

Unduh file ekstensi Metal.js Developer Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Metal.js Developer Tools Metal.js Developer Tools
ID fagnjmppkokolnbloalifcmcooldhiik
URL Resmi https://chromewebstore.google.com/detail/metaljs-developer-tools/fagnjmppkokolnbloalifcmcooldhiik
Deskripsi Developer tool for inspecting Metal.js Components
Ukuran File 144 KB
Jumlah Instalasi 109
Versi Saat Ini 1.2.5
Terakhir Diperbarui 2017-10-27
Tanggal Publikasi 2017-10-26
Penilaian 5.00/5 Total 2 Penilaian
Pengembang bryceosterhaus
Tipe Pembayaran free
Situs Ekstensi https://github.com/metal/metal-devtools
URL Halaman Bantuan https://github.com/metal/metal-devtools
Bahasa yang Didukung 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:\/\/*\/*"
    ]
}