Vue.js devtools

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

Vue.js devtoolsคืออะไร?

Vue.js devtools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vuejs-dev และคุณลักษณะหลักของมันคือ "Chrome and Firefox DevTools extension for debugging Vue.js applications."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vue.js devtools

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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'"
}