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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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