Vue Component Finder

Tool for locate Vue component code.

Vue Component Finderとは何ですか?

Vue Component Finderはcsonlaiによって開発されたChromeの拡張機能で、その主な機能は「Tool for locate Vue component code.」です。

拡張機能のスクリーンショット

screenshot

Vue Component Finder拡張機能のCRXファイルをダウンロード

Vue Component Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/csonlai/vue-component-finder
ヘルプページのURL 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"
    ]
}