Metal.js Developer Tools

Developer tool for inspecting Metal.js Components

Co to jest Metal.js Developer Tools?

Metal.js Developer Tools to rozszerzenie Chrome opracowane przez bryceosterhaus, a jego główną funkcją jest „Developer tool for inspecting Metal.js Components”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Metal.js Developer Tools

Pobierz pliki rozszerzeń Metal.js Developer Tools w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Metal.js Developer Tools Metal.js Developer Tools
ID fagnjmppkokolnbloalifcmcooldhiik
Oficjalny URL https://chromewebstore.google.com/detail/metaljs-developer-tools/fagnjmppkokolnbloalifcmcooldhiik
Opis Developer tool for inspecting Metal.js Components
Rozmiar pliku 144 KB
Liczba instalacji 109
Aktualna Wersja 1.2.5
Ostatnia Aktualizacja 2017-10-27
Data Publikacji 2017-10-26
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper bryceosterhaus
Typ Płatności free
Strona Rozszerzenia https://github.com/metal/metal-devtools
Adres URL Strony Pomocy https://github.com/metal/metal-devtools
Obsługiwane Języki 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:\/\/*\/*"
    ]
}