Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Vue Performance Devtool क्या है?

Vue Performance Devtool rafaesc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A devtool extension for inspecting the performance of Vue components."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

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

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

                        A Chrome devtool extension for inspecting performance of Vue components.                    

एक्सटेंशन की मूल जानकारी

नाम Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
आधिकारिक URL https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
विवरण A devtool extension for inspecting the performance of Vue components.
फ़ाइल का आकार 226 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 0.0.6
अंतिम अपडेट 2018-03-03
प्रकाशन तिथि 2018-03-03
रेटिंग 3.21/5 कुल 24 रेटिंग्स
डेवलपर rafaesc
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        }
    ]
}