Vue.js devtools - UI Customized

Browser DevTools extension for debugging Vue.js applications.

Vue.js devtools - UI Customized란 무엇입니까?

Vue.js devtools - UI Customized은(는) parimaanam.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser DevTools extension for debugging Vue.js applications."입니다.

확장 프로그램 스크린샷

screenshot

Vue.js devtools - UI Customized 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}