VS code Text Completer
Completes your text, inspired by the VS code text completer
Was ist VS code Text Completer?
VS code Text Completer ist eine Chrome-Erweiterung, die von Ephrem Adugna entwickelt wurde, und ihr Hauptmerkmal ist "Completes your text, inspired by the VS code text completer".
Erweiterungsscreenshots
VS code Text Completer-Erweiterungs-CRX-Datei herunterladen
Laden Sie VS code Text Completer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Offizielle URL | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Beschreibung | Completes your text, inspired by the VS code text completer |
Dateigröße | 77.53 KB |
Installationsanzahl | 32 |
Aktuelle Version | 1.1 |
Letztes Update | 2020-12-20 |
Veröffentlichungsdatum | 2020-12-14 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Ephrem Adugna |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |