Vueable Query

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

什么是Vueable Query?

Vueable Query是由Vueable Query开发的Chrome扩展程序,该扩展的主要功能是“This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Vueable Query扩展crx文件

下载Vueable Query扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Vueable Query Vueable Query
ID dnhcogggodnfhnnfimapejbkkihmflaa
官方URL https://chromewebstore.google.com/detail/vueable-query/dnhcogggodnfhnnfimapejbkkihmflaa
简介 This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue.
文件大小 87.83 KB
安装次数 41
当前版本 1.2.0
更新时间 2023-08-05
上架时间 2023-06-05
评分 5.00/5 共7次评分
开发者 Vueable Query
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.vueablequery.com/
帮助页面URL https://github.com/oslabs-beta/Vueable-query
支持的语言 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"
            ]
        }
    ]
}