Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Vue Performance Devtool là gì?

Vue Performance Devtool là một tiện ích mở rộng Chrome được phát triển bởi rafaesc, và tính năng chính của nó là "A devtool extension for inspecting the performance of Vue components.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vue Performance Devtool

Tải xuống các tệp mở rộng Vue Performance Devtool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A Chrome devtool extension for inspecting performance of Vue components.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
URL Chính Thức https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
Mô tả A devtool extension for inspecting the performance of Vue components.
Kích Thước Tệp 226 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2018-03-03
Ngày Phát Hành 2018-03-03
Đánh Giá 3.21/5 Tổng số 24 Đánh Giá
Nhà Phát Triển rafaesc
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}