Vue Component Finder
Tool for locate Vue component code.
什麼是Vue Component Finder?
Vue Component Finder是由csonlai開發的Chrome擴展程式,該擴展的主要功能是“Tool for locate Vue component code.”。
擴展截圖
下載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 |
ID | maldlhiallkfciipjnedanjjpnfaljpl |
官方網址 | 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 |
說明頁面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" ] } |