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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vueable Query และคุณลักษณะหลักของมันคือ "This extension creates a Dev Tool Panel to monitor performance metrics for Vue apps that use Tanstack Query for Vue."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vueable Query

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}