Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Wat is Vue Performance Devtool?

Vue Performance Devtool is een Chrome-extensie ontwikkeld door rafaesc, en de belangrijkste functie is "A devtool extension for inspecting the performance of Vue components.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Vue Performance Devtool

Download Vue Performance Devtool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A Chrome devtool extension for inspecting performance of Vue components.                    

Basisinformatie over de Extensie

Naam Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
Officiële URL https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
Beschrijving A devtool extension for inspecting the performance of Vue components.
Bestandsgrootte 226 KB
Aantal Installaties 10,000
Huidige Versie 0.0.6
Laatst Bijgewerkt 2018-03-03
Publicatiedatum 2018-03-03
Beoordeling 3.21/5 Totaal 24 Beoordelingen
Ontwikkelaar rafaesc
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}