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 |
官方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 |
帮助页面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" ] } |