Metal.js Developer Tools

Developer tool for inspecting Metal.js Components

Cos'è Metal.js Developer Tools?

Metal.js Developer Tools è un'estensione di Chrome sviluppata da bryceosterhaus, e la sua funzione principale è "Developer tool for inspecting Metal.js Components".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Metal.js Developer Tools

Scarica i file di estensione Metal.js Developer Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Metal.js Developer Tools Metal.js Developer Tools
ID fagnjmppkokolnbloalifcmcooldhiik
URL Ufficiale https://chromewebstore.google.com/detail/metaljs-developer-tools/fagnjmppkokolnbloalifcmcooldhiik
Descrizione Developer tool for inspecting Metal.js Components
Dimensione del File 144 KB
Conteggio Installazioni 109
Versione Corrente 1.2.5
Ultimo Aggiornamento 2017-10-27
Data di Pubblicazione 2017-10-26
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore bryceosterhaus
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/metal/metal-devtools
URL della Pagina di Aiuto https://github.com/metal/metal-devtools
Lingue Supportate 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:\/\/*\/*"
    ]
}