Vue Component Finder

Tool for locate Vue component code.

Apa itu Vue Component Finder?

Vue Component Finder adalah ekstensi Chrome yang dikembangkan oleh csonlai, dan fitur utamanya adalah "Tool for locate Vue component code.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Vue Component Finder

Unduh file ekstensi Vue Component Finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Vue Component Finder Vue Component Finder
ID maldlhiallkfciipjnedanjjpnfaljpl
URL Resmi https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl
Deskripsi Tool for locate Vue component code.
Ukuran File 14.28 KB
Jumlah Instalasi 2,312
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-10-23
Tanggal Publikasi 2017-10-22
Penilaian 2.13/5 Total 8 Penilaian
Pengembang csonlai
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/csonlai/vue-component-finder
URL Halaman Bantuan https://github.com/csonlai/vue-component-finder
Bahasa yang Didukung 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"
    ]
}