Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Cos'è Vue Performance Devtool?

Vue Performance Devtool è un'estensione di Chrome sviluppata da rafaesc, e la sua funzione principale è "A devtool extension for inspecting the performance of Vue components.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Vue Performance Devtool

Scarica i file di estensione Vue Performance Devtool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A Chrome devtool extension for inspecting performance of Vue components.                    

Informazioni di Base sull'Estensione

Nome Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
URL Ufficiale https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
Descrizione A devtool extension for inspecting the performance of Vue components.
Dimensione del File 226 KB
Conteggio Installazioni 10,000
Versione Corrente 0.0.6
Ultimo Aggiornamento 2018-03-03
Data di Pubblicazione 2018-03-03
Valutazione 3.21/5 Totale 24 Valutazioni
Sviluppatore rafaesc
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}