Vue Component Finder
Tool for locate Vue component code.
Vad är Vue Component Finder?
Vue Component Finder är en Chrome-tillägg utvecklad av csonlai, och dess huvudfunktion är "Tool for locate Vue component code.".
Tilläggsskärmbilder
Ladda ner Vue Component Finder-förlängningens CRX-fil
Ladda ner Vue Component Finder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | maldlhiallkfciipjnedanjjpnfaljpl |
| Officiell webbadress | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
| Beskrivning | Tool for locate Vue component code. |
| Filstorlek | 14.28 KB |
| Antal Installationer | 2,312 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2017-10-23 |
| Publiceringsdatum | 2017-10-22 |
| Betyg | 2.13/5 Totalt 8 Betyg |
| Utvecklare | csonlai |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/csonlai/vue-component-finder |
| Hjälpsida URL | https://github.com/csonlai/vue-component-finder |
| Stödda Språk | 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"
]
} | |