Vue Component Finder
Tool for locate Vue component code.
Τι είναι το Vue Component Finder;
Το Vue Component Finder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον csonlai, και η κύρια λειτουργία του είναι "Tool for locate Vue component code.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Vue Component Finder
Λήψη αρχείων επέκτασης Vue Component Finder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Vue Component Finder |
ID | maldlhiallkfciipjnedanjjpnfaljpl |
Επίσημο URL | https://chromewebstore.google.com/detail/vue-component-finder/maldlhiallkfciipjnedanjjpnfaljpl |
Περιγραφή | Tool for locate Vue component code. |
Μέγεθος Αρχείου | 14.28 KB |
Αριθμός Εγκαταστάσεων | 2,312 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2017-10-23 |
Ημερομηνία Δημοσίευσης | 2017-10-22 |
Αξιολόγηση | 2.13/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | csonlai |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/csonlai/vue-component-finder |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/csonlai/vue-component-finder |
Υποστηριζόμενες Γλώσσες | 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" ] } |