Vue force dev

A tool forces vue to run in development

ما هو Vue force dev؟

Vue force dev هو إضافة Chrome تم تطويرها بواسطة LoryHuang، والميزة الرئيسية لها هي "A tool forces vue to run in development".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Vue force dev

قم بتنزيل ملفات الامتداد Vue force dev بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
        }
    ]
}