Vue Component Finder
Tool for locate Vue component code.
Co to jest Vue Component Finder?
Vue Component Finder to rozszerzenie Chrome opracowane przez csonlai, a jego główną funkcją jest „Tool for locate Vue component code.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Vue Component Finder
Pobierz pliki rozszerzeń Vue Component Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Vue Component Finder |
ID | maldlhiallkfciipjnedanjjpnfaljpl |
Oficjalny URL | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
Opis | Tool for locate Vue component code. |
Rozmiar pliku | 14.28 KB |
Liczba instalacji | 2,312 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2017-10-23 |
Data Publikacji | 2017-10-22 |
Ocena | 2.13/5 Łącznie 8 Oceny |
Deweloper | csonlai |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/csonlai/vue-component-finder |
Adres URL Strony Pomocy | https://github.com/csonlai/vue-component-finder |
Obsługiwane Języki | 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" ] } |