Vue Component Finder
Tool for locate Vue component code.
Was ist Vue Component Finder?
Vue Component Finder ist eine Chrome-Erweiterung, die von csonlai entwickelt wurde, und ihr Hauptmerkmal ist "Tool for locate Vue component code.".
Erweiterungsscreenshots
Vue Component Finder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Vue Component Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | maldlhiallkfciipjnedanjjpnfaljpl |
| Offizielle URL | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
| Beschreibung | Tool for locate Vue component code. |
| Dateigröße | 14.28 KB |
| Installationsanzahl | 2,312 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2017-10-23 |
| Veröffentlichungsdatum | 2017-10-22 |
| Bewertung | 2.13/5 Insgesamt 8 Bewertungen |
| Entwickler | csonlai |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/csonlai/vue-component-finder |
| Hilfeseite URL | https://github.com/csonlai/vue-component-finder |
| Unterstützte Sprachen | 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"
]
} | |