Metal.js Developer Tools

Developer tool for inspecting Metal.js Components

Metal.js Developer Toolsคืออะไร?

Metal.js Developer Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bryceosterhaus และคุณลักษณะหลักของมันคือ "Developer tool for inspecting Metal.js Components"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Metal.js Developer Tools

ดาวน์โหลดไฟล์ส่วนขยาย Metal.js Developer Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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