VS code Text Completer
Completes your text, inspired by the VS code text completer
¿Qué es VS code Text Completer?
VS code Text Completer es una extensión de Chrome desarrollada por Ephrem Adugna, y su función principal es "Completes your text, inspired by the VS code text completer".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión VS code Text Completer
Descarga archivos de extensión VS code Text Completer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
URL Oficial | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Descripción | Completes your text, inspired by the VS code text completer |
Tamaño del Archivo | 77.53 KB |
Cantidad de Instalaciones | 32 |
Versión Actual | 1.1 |
Última Actualización | 2020-12-20 |
Fecha de Publicación | 2020-12-14 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Ephrem Adugna |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |