Vue Component Finder
Tool for locate Vue component code.
Co je Vue Component Finder?
Vue Component Finder je rozšíření Chrome vyvinuté csonlai, a jeho hlavní funkcí je „Tool for locate Vue component code.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Vue Component Finder
Stáhněte si soubory rozšíření Vue Component Finder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Vue Component Finder |
ID | maldlhiallkfciipjnedanjjpnfaljpl |
Oficiální URL | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
Popis | Tool for locate Vue component code. |
Velikost souboru | 14.28 KB |
Počet instalací | 2,312 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2017-10-23 |
Datum Vydání | 2017-10-22 |
Hodnocení | 2.13/5 Celkem 8 Hodnocení |
Vývojář | csonlai |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/csonlai/vue-component-finder |
URL Stránky Nápovědy | https://github.com/csonlai/vue-component-finder |
Podporované Jazyky | 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" ] } |