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文件

下載Vue force dev擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Easy to debug online vue code.

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

擴展基本資訊

名稱 Vue force dev Vue force dev
ID oohfffedbkbjnbpbbedapppafmlnccmb
官方網址 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"
        }
    ]
}