Vue.js devtools

Chrome and Firefox DevTools extension for debugging Vue.js applications.

Vue.js devtoolsとは何ですか?

Vue.js devtoolsはvuejs-devによって開発されたChromeの拡張機能で、その主な機能は「Chrome and Firefox DevTools extension for debugging Vue.js applications.」です。

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

screenshot
screenshot
screenshot
screenshot

Vue.js devtools拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Chrome DevTools extension for debugging Vue.js applications.

Thank you for trying the Vue.js devtools Beta! If you have any issue, please report them on the GitHub repository.

This is the beta channel - a major refactor that brings initial Vue 3 support.

Note the beta channel may cause conflict with the stable version of Vue devtools. If the Vue icon is lit but the Vue tab doesn't show up in devtools, please temporarily disable the stable version and re-open the page.                    

拡張機能の基本情報

名前 Vue.js devtools Vue.js devtools
ID ljjemllljcmogpfapbkkighbhhppjdbg
公式URL https://chrome.google.com/webstore/detail/vuejs-devtools/ljjemllljcmogpfapbkkighbhhppjdbg
説明 Chrome and Firefox DevTools extension for debugging Vue.js applications.
ファイルサイズ 1.96 MB
インストール数 258,294
現在のバージョン 6.0.0 beta 21
最終更新日 2021-12-20
公開日 2019-03-25
評価 3.74/5 合計 136 レビュー
開発者 vuejs-dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/vuejs/vue-devtools
ヘルプページのURL https://github.com/vuejs/vue-devtools/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue.js devtools",
    "version": "6.0.0.21",
    "version_name": "6.0.0 beta 21",
    "description": "Chrome and Firefox DevTools extension for debugging Vue.js applications.",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16-beta.png",
        "48": "icons\/48-beta.png",
        "128": "icons\/128-beta.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        },
        "default_title": "Vue Devtools",
        "default_popup": "popups\/not-found.html"
    },
    "web_accessible_resources": [
        "devtools.html",
        "devtools-background.html",
        "build\/backend.js"
    ],
    "devtools_page": "devtools-background.html",
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.headwayapp.co; object-src 'self'"
}