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
官方網址 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
電子郵箱 [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'"
}