BUGFIX Vue.js devtools

BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.

BUGFIX Vue.js devtools란 무엇입니까?

BUGFIX Vue.js devtools은(는) liana.pigeot에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        [BUGFIX] Version, not by the original author.

The current beta devtool has bugs in mutations, so I uploaded this fixed version while waiting for the official one to be updated.
Chrome and Firefox DevTools extension for debugging Vue.js applications.
Chrome devtools extension for debugging Vue.js applications.                    

확장 프로그램 기본 정보

이름 BUGFIX Vue.js devtools BUGFIX Vue.js devtools
ID niapgcaeadldbabakiifalfcidacihap
공식 URL https://chromewebstore.google.com/detail/bugfix-vuejs-devtools/niapgcaeadldbabakiifalfcidacihap
설명 BUGFIX Version, not by original author. Chrome and Firefox DevTools extension for debugging Vue.js applications.
파일 크기 451 KB
설치 횟수 3,349
현재 버전 5.0.0 beta 3 fix
최근 업데이트 2019-03-08
출시 날짜 2019-03-08
평점 3.63/5 총 8 개의 평점
개발자 liana.pigeot
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BUGFIX Vue.js devtools",
    "version": "5.0.0.4",
    "version_name": "5.0.0 beta 3 fix",
    "description": "BUGFIX Version, not by original author. 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": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/hook.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/detector.js"
            ],
            "run_at": "document_idle"
        }
    ]
}