Vue force dev

A tool forces vue to run in development

Vue force dev란 무엇입니까?

Vue force dev은(는) LoryHuang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A tool forces vue to run in development"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Vue force dev 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easy to debug online vue code.

repo: https://github.com/hzmming/vue-force-dev                    

확장 프로그램 기본 정보

이름 Vue force dev Vue force dev
ID oohfffedbkbjnbpbbedapppafmlnccmb
공식 URL https://chromewebstore.google.com/detail/vue-force-dev/oohfffedbkbjnbpbbedapppafmlnccmb
설명 A tool forces vue to run in development
파일 크기 23.38 KB
설치 횟수 10,000
현재 버전 1.4.0
최근 업데이트 2024-03-03
출시 날짜 2020-09-02
평점 4.52/5 총 27 개의 평점
개발자 LoryHuang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hzmming/vue-force-dev
도움말 페이지 URL https://github.com/hzmming/vue-force-dev
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue force dev",
    "description": "A tool forces vue to run in development",
    "version": "1.4.0",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popups\/not-found.html",
        "default_title": "Vue force dev",
        "default_icon": {
            "16": "icons\/16-gray.png",
            "48": "icons\/48-gray.png",
            "128": "icons\/128-gray.png"
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "detector.js"
            ],
            "run_at": "document_start"
        }
    ]
}