VS code Text Completer
Completes your text, inspired by the VS code text completer
Vad är VS code Text Completer?
VS code Text Completer är en Chrome-tillägg utvecklad av Ephrem Adugna, och dess huvudfunktion är "Completes your text, inspired by the VS code text completer".
Tilläggsskärmbilder
Ladda ner VS code Text Completer-förlängningens CRX-fil
Ladda ner VS code Text Completer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Officiell webbadress | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
Beskrivning | Completes your text, inspired by the VS code text completer |
Filstorlek | 77.53 KB |
Antal Installationer | 32 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2020-12-20 |
Publiceringsdatum | 2020-12-14 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Ephrem Adugna |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |