VS code Text Completer
Completes your text, inspired by the VS code text completer
VS code Text Completerとは何ですか?
VS code Text CompleterはEphrem Adugnaによって開発されたChromeの拡張機能で、その主な機能は「Completes your text, inspired by the VS code text completer」です。
拡張機能のスクリーンショット
VS code Text Completer拡張機能のCRXファイルをダウンロード
VS code Text Completer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | VS code Text Completer |
ID | bbfpjmlnbgaklbmjmbmefkkpnekbblij |
公式URL | https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij |
説明 | Completes your text, inspired by the VS code text completer |
ファイルサイズ | 77.53 KB |
インストール数 | 32 |
現在のバージョン | 1.1 |
最終更新日 | 2020-12-20 |
公開日 | 2020-12-14 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Ephrem Adugna |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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 } |