Vue.js devtools - UI Customized

Browser DevTools extension for debugging Vue.js applications.

Vue.js devtools - UI Customizedคืออะไร?

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

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Vue.js devtools - UI Customized ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a custom build of Vue DevTools from the official repo with customized fonts and UI element sizes. 

This modified version uses 'Code New Roman' font as a replacement for Roboto font used in the official version. Also, the font sizes are reduced to match with the chrome dev tools standard size.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Vue.js devtools - UI Customized Vue.js devtools - UI Customized
ID fjjopahebfkmlmkekebhacaklbhiefbn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vuejs-devtools-ui-customi/fjjopahebfkmlmkekebhacaklbhiefbn
คำอธิบาย Browser DevTools extension for debugging Vue.js applications.
ขนาดไฟล์ 1.96 MB
จำนวนการติดตั้ง 8,000
เวอร์ชันปัจจุบัน 6.5.1
อัปเดตครั้งล่าสุด 2023-11-10
วันที่เผยแพร่ 2021-12-25
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา parimaanam.net
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue.js devtools - UI Customized",
    "version": "6.5.1",
    "version_name": "6.5.1",
    "description": "Browser DevTools extension for debugging Vue.js applications.",
    "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 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": true
    },
    "permissions": [
        "",
        "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'; object-src 'self'"
}