Vue Performance Devtool

A devtool extension for inspecting the performance of Vue components.

Vue Performance Devtoolとは何ですか?

Vue Performance Devtoolはrafaescによって開発されたChromeの拡張機能で、その主な機能は「A devtool extension for inspecting the performance of Vue components.」です。

拡張機能のスクリーンショット

screenshot

Vue Performance Devtool拡張機能のCRXファイルをダウンロード

Vue Performance Devtool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A Chrome devtool extension for inspecting performance of Vue components.                    

拡張機能の基本情報

名前 Vue Performance Devtool Vue Performance Devtool
ID koljilikekcjfeecjefimopfffhkjbne
公式URL https://chrome.google.com/webstore/detail/vue-performance-devtool/koljilikekcjfeecjefimopfffhkjbne
説明 A devtool extension for inspecting the performance of Vue components.
ファイルサイズ 226 KB
インストール数 10,000
現在のバージョン 0.0.6
最終更新日 2018-03-03
公開日 2018-03-03
評価 3.21/5 合計 24 レビュー
開発者 rafaesc
支払い方法 free
対応言語 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"
        }
    ]
}