Vue Component Finder

Tool for locate Vue component code.

ما هو Vue Component Finder؟

Vue Component Finder هو إضافة Chrome تم تطويرها بواسطة csonlai، والميزة الرئيسية لها هي "Tool for locate Vue component code.".

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

screenshot

تحميل ملف CRX للإضافة Vue Component Finder

قم بتنزيل ملفات الامتداد Vue Component Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        vue-component-finder is a Chrome plugin for Vue project, which help developer preview component code module and locate code file in IDE quickly.

You can read https://github.com/csonlai/vue-component-finder for usage detail.                    

معلومات أساسية عن التمديد

الاسم Vue Component Finder Vue Component Finder
ID maldlhiallkfciipjnedanjjpnfaljpl
عنوان URL الرسمي https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl
الوصف Tool for locate Vue component code.
حجم الملف 14.28 KB
عدد التثبيتات 2,312
النسخة الحالية 1.0
آخر تحديث 2017-10-23
تاريخ النشر 2017-10-22
تقييم 2.13/5 مجموع تقييمات 8
المطور csonlai
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/csonlai/vue-component-finder
عنوان صفحة المساعدة https://github.com/csonlai/vue-component-finder
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vue Component Finder",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Tool for locate Vue component code.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "32": ".\/images\/icon32.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "web_accessible_resources": [
        "css\/index.css",
        "css\/highlight.css"
    ]
}