Vue Component Finder
Tool for locate Vue component code.
What is Vue Component Finder?
Vue Component Finder is a Chrome extension developed by csonlai, and its main feature is "Tool for locate Vue component code.".
Extension Screenshots
Download Vue Component Finder Extension CRX File
Download Vue Component Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | maldlhiallkfciipjnedanjjpnfaljpl |
Official URL | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
Description | Tool for locate Vue component code. |
File Size | 14.28 KB |
Installation Count | 2,312 |
Current Version | 1.0 |
Last Updated | 2017-10-23 |
Publish Date | 2017-10-22 |
Rating | 2.13/5 Total 8 Ratings |
Developer | csonlai |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/csonlai/vue-component-finder |
Help Page URL | https://github.com/csonlai/vue-component-finder |
Supported Languages | 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" ] } |