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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        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"
        }
    ]
}