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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में Vueable Query एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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