Vueable Query

This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue.

Vueable Query là gì?

Vueable Query là một tiện ích mở rộng Chrome được phát triển bởi Vueable Query, và tính năng chính của nó là "This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Vueable Query 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 dev tool for projects using Tanstack Query for Vue. It provides a separate panel within the Chrome dev tools that display metrics for queries. 

The top panel is a timeline showing the chronological order of queries made with Tanstack Query. The bottom panel displays the start time and any relevant cache hits for each Query Key.

This is an open source product. Please visit our repository at https://github.com/oslabs-beta/Vueable-query for more information.                    

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

Tên Vueable Query Vueable Query
ID dnhcogggodnfhnnfimapejbkkihmflaa
URL Chính Thức https://chromewebstore.google.com/detail/vueable-query/dnhcogggodnfhnnfimapejbkkihmflaa
Mô tả This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue.
Kích Thước Tệp 87.83 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-08-05
Ngày Phát Hành 2023-06-05
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Vueable Query
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.vueablequery.com/
URL Trang Trợ Giúp https://github.com/oslabs-beta/Vueable-query
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vueable Query",
    "version": "1.2.0",
    "description": "This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue.",
    "manifest_version": 3,
    "author": "Anna Duong, Brandon Yoon, Eric Tjon, & Esther Witbeck",
    "devtools_page": "devtools.html",
    "icons": {
        "128": "\/assets\/Vueable_Query_logo_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}