Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

ما هو Vue Performance Devtool؟

Vue Performance Devtool هو إضافة Chrome تم تطويرها بواسطة rafaesc، والميزة الرئيسية لها هي "A devtool extension for inspecting the performance of Vue components.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Vue Performance Devtool

قم بتنزيل ملفات الامتداد Vue Performance Devtool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A Chrome devtool extension for inspecting performance of Vue components.                    

معلومات أساسية عن التمديد

الاسم Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
عنوان URL الرسمي https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
الوصف A devtool extension for inspecting the performance of Vue components.
حجم الملف 226 KB
عدد التثبيتات 10,000
النسخة الحالية 0.0.6
آخر تحديث 2018-03-03
تاريخ النشر 2018-03-03
تقييم 3.21/5 مجموع تقييمات 24
المطور rafaesc
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue Performance Devtool",
    "version": "0.0.6",
    "description": "A devtool extension for inspecting the performance of Vue components.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        },
        "default_title": "Vue Performance"
    },
    "web_accessible_resources": [
        "devtools.html",
        "devtools-background.html",
        "build\/backend.js"
    ],
    "devtools_page": "devtools-background.html",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ]
}