Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Co to jest Vue Performance Devtool?

Vue Performance Devtool to rozszerzenie Chrome opracowane przez rafaesc, a jego główną funkcją jest „A devtool extension for inspecting the performance of Vue components.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Vue Performance Devtool

Pobierz pliki rozszerzeń Vue Performance Devtool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A Chrome devtool extension for inspecting performance of Vue components.                    

Podstawowe informacje o rozszerzeniu

Nazwa Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
Oficjalny URL https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
Opis A devtool extension for inspecting the performance of Vue components.
Rozmiar pliku 226 KB
Liczba instalacji 10,000
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2018-03-03
Data Publikacji 2018-03-03
Ocena 3.21/5 Łącznie 24 Oceny
Deweloper rafaesc
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}