Vue Component Finder
Tool for locate Vue component code.
Wat is Vue Component Finder?
Vue Component Finder is een Chrome-extensie ontwikkeld door csonlai, en de belangrijkste functie is "Tool for locate Vue component code.".
Extensie Screenshots
Download het CRX-bestand van de extensie Vue Component Finder
Download Vue Component Finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Vue Component Finder |
ID | maldlhiallkfciipjnedanjjpnfaljpl |
Officiële URL | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
Beschrijving | Tool for locate Vue component code. |
Bestandsgrootte | 14.28 KB |
Aantal Installaties | 2,312 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-10-23 |
Publicatiedatum | 2017-10-22 |
Beoordeling | 2.13/5 Totaal 8 Beoordelingen |
Ontwikkelaar | csonlai |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/csonlai/vue-component-finder |
Help Pagina-URL | https://github.com/csonlai/vue-component-finder |
Ondersteunde Talen | 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" ] } |