VS code Text Completer
Completes your text, inspired by the VS code text completer
What is VS code Text Completer?
VS code Text Completer is a Chrome extension developed by Ephrem Adugna, and its main feature is "Completes your text, inspired by the VS code text completer".
Extension Screenshots
Download VS code Text Completer Extension CRX File
Download VS code Text Completer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Official URL | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Description | Completes your text, inspired by the VS code text completer |
File Size | 77.53 KB |
Installation Count | 32 |
Current Version | 1.1 |
Last Updated | 2020-12-20 |
Publish Date | 2020-12-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Ephrem Adugna |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |