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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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:\/\/*\/*"
    ]
}