Text Expander
Shorthand abbreviations expand to full text.
Text Expanderคืออะไร?
Text Expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย moondev และคุณลักษณะหลักของมันคือ "Shorthand abbreviations expand to full text."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Text Expander
ดาวน์โหลดไฟล์ส่วนขยาย Text Expander ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Expand a snippet of text to a longer form, using a hotkey (e.g., "so" → "site:stackoverflow.com"). Works in most text inputs, such as search boxes and multi-line comment fields. Adding a text snippet: • Click/open the extension. • In the first box: enter the abbreviated text, without spaces, to be replaced a longer form in the second text box. • In the second box: enter the expanded form, replacing the "prefix" text from the first box. To use a saved snippet: • In any input box, type your prefix text and use the assigned shortcut (default is "Ctrl+Shift+G". • For the expansion to work, the prefix text must be separated from other words by a space. • The caret (blinking text cursor) must be on or around the prefix word. For example, lets say the pipe character (|) is your caret placement: how to exit vim? so| (valid) how to exit vim? s|o (valid) how to exit vim? |so (valid) how to exit vim?| so (invalid) To remove a text snippet: • Click/open the extension. • Check any boxes you'd like removed. • Click the "Remove" button and reopen the extension. Notes and limitations: • Expansion won't work in some input fields. • Expansion won't work in the Omnibox (Chrome's address bar/search bar). • Expansion won't work in the startup page search bar. • The prefix text doesn't need to be highlighted. • The prefix-expansion pair is saved locally on your browser. Change Notes: [1.1.0] • Changes: 2nd input box now changed toto allow multi-line expansions. • Bug fix: Long expansions in the extension are now scrollable. • Bug fix: Removing local storage items doesn't refresh list. Check the source code on GitHub: https://github.com/ssmooncoder/text-expander
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Text Expander |
ID | nkmhjacokhapaecpbcbddhjjpajddamf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/text-expander/nkmhjacokhapaecpbcbddhjjpajddamf |
คำอธิบาย | Shorthand abbreviations expand to full text. |
ขนาดไฟล์ | 7 KB |
จำนวนการติดตั้ง | 76 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2021-06-15 |
วันที่เผยแพร่ | 2021-06-13 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | moondev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Text Expander", "author": "Samuel Moon", "description": "Shorthand abbreviations expand to full text.", "version": "1.1.0", "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": { "default_title": "Add or Remove Entries", "default_popup": "popup.html" }, "permissions": [ "storage", "activeTab", "scripting" ], "commands": { "expand": { "suggested_key": { "default": "Ctrl+Shift+G", "mac": "MacCtrl+Shift+G" }, "description": "Expand text under cursor if available." } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "expand.js" ] } ] } |