VS code Text Completer
Completes your text, inspired by the VS code text completer
VS code Text Completerคืออะไร?
VS code Text Completer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ephrem Adugna และคุณลักษณะหลักของมันคือ "Completes your text, inspired by the VS code text completer"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VS code Text Completer
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } |