VS code Text Completer
Completes your text, inspired by the VS code text completer
O que é VS code Text Completer?
VS code Text Completer é uma extensão do Chrome desenvolvida por Ephrem Adugna, e sua principal característica é "Completes your text, inspired by the VS code text completer".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão VS code Text Completer
Baixe arquivos de extensão VS code Text Completer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
URL Oficial | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Descrição | Completes your text, inspired by the VS code text completer |
Tamanho do Arquivo | 77.53 KB |
Contagem de Instalações | 32 |
Versão Atual | 1.1 |
Última Atualização | 2020-12-20 |
Data de Publicação | 2020-12-14 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Ephrem Adugna |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |