VS code Text Completer
Completes your text, inspired by the VS code text completer
Wat is VS code Text Completer?
VS code Text Completer is een Chrome-extensie ontwikkeld door Ephrem Adugna, en de belangrijkste functie is "Completes your text, inspired by the VS code text completer".
Extensie Screenshots
Download het CRX-bestand van de extensie VS code Text Completer
Download VS code Text Completer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Officiële URL | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Beschrijving | Completes your text, inspired by the VS code text completer |
Bestandsgrootte | 77.53 KB |
Aantal Installaties | 32 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2020-12-20 |
Publicatiedatum | 2020-12-14 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Ephrem Adugna |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |