VS code Text Completer
Completes your text, inspired by the VS code text completer
Τι είναι το VS code Text Completer;
Το VS code Text Completer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ephrem Adugna, και η κύρια λειτουργία του είναι "Completes your text, inspired by the VS code text completer".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης VS code Text Completer
Λήψη αρχείων επέκτασης VS code Text Completer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
An extension inspired by the Visual Studio Code text completer. This extension makes it quick and easy to have your text completed in a free and aesthetically pleasing way. The extension learns from you, so the more you type, the better your suggestions become. In this update, the extension's size has become smaller and the suggestions have been fixed.
Βασικές Πληροφορίες Επέκτασης
Όνομα | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Επίσημο URL | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Περιγραφή | Completes your text, inspired by the VS code text completer |
Μέγεθος Αρχείου | 77.53 KB |
Αριθμός Εγκαταστάσεων | 32 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2020-12-20 |
Ημερομηνία Δημοσίευσης | 2020-12-14 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Ephrem Adugna |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VS code Text Completer", "version": "1.1", "description": "Completes your text, inspired by the VS code text completer", "permissions": [ "activeTab", "declarativeContent", "contextMenus" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.com\/*" ], "css": [ "background-styles.css" ] } ], "page_action": { "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |