Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Was ist Vue Performance Devtool?

Vue Performance Devtool ist eine Chrome-Erweiterung, die von rafaesc entwickelt wurde, und ihr Hauptmerkmal ist "A devtool extension for inspecting the performance of Vue components.".

Erweiterungsscreenshots

screenshot

Vue Performance Devtool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vue Performance Devtool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A Chrome devtool extension for inspecting performance of Vue components.                    

Grundlegende Informationen zur Erweiterung

Name Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
Offizielle URL https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
Beschreibung A devtool extension for inspecting the performance of Vue components.
Dateigröße 226 KB
Installationsanzahl 10,000
Aktuelle Version 0.0.6
Letztes Update 2018-03-03
Veröffentlichungsdatum 2018-03-03
Bewertung 3.21/5 Insgesamt 24 Bewertungen
Entwickler rafaesc
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}