Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Co je Vue Performance Devtool?

Vue Performance Devtool je rozšíření Chrome vyvinuté rafaesc, a jeho hlavní funkcí je „A devtool extension for inspecting the performance of Vue components.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Vue Performance Devtool

Stáhněte si soubory rozšíření Vue Performance Devtool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        A Chrome devtool extension for inspecting performance of Vue components.                    

Základní Informace o Rozšíření

Název Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
Oficiální URL https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
Popis A devtool extension for inspecting the performance of Vue components.
Velikost souboru 226 KB
Počet instalací 10,000
Aktuální Verze 0.0.6
Poslední Aktualizace 2018-03-03
Datum Vydání 2018-03-03
Hodnocení 3.21/5 Celkem 24 Hodnocení
Vývojář rafaesc
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}