Surround it!
Simply wrap text in any brackets or parentheses.
Surround it!คืออะไร?
Surround it! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://andret.eu และคุณลักษณะหลักของมันคือ "Simply wrap text in any brackets or parentheses."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Surround it!
ดาวน์โหลดไฟล์ส่วนขยาย Surround it! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension in based on the behavior of programming IDEs that speed up writing texts. Select the text and press the opening bracket or quotation mark, instead of replacing the text (default behavior), the text will be wrapped correctly with the selected bracket or character and the selection will persist. With this extension you can wrap the text with one of the possible character pair. Choose from: - (...) - [...] - {...} - <...> - '...' - "..." - `...` After pressing the first of the characters, the selected text appears in the matching brackets or string literal characters and selection remains the same. The extension does not store or send the selected texts.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Surround it! |
ID | cjelblbjilfobifendknkljagdndaipd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/surround-it/cjelblbjilfobifendknkljagdndaipd |
คำอธิบาย | Simply wrap text in any brackets or parentheses. |
ขนาดไฟล์ | 44.33 KB |
จำนวนการติดตั้ง | 25 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2023-06-23 |
วันที่เผยแพร่ | 2021-11-08 |
คะแนน | 4.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://andret.eu |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Surround it!", "short_name": "Surround it", "version": "0.2.0", "description": "Simply wrap text in any brackets or parentheses.", "author": "[email protected]", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/", "http:\/\/*\/" ], "js": [ "libs\/jquery.min.js", "background.js" ] } ], "icons": { "16": "assets\/icons\/img16.png", "32": "assets\/icons\/img32.png", "48": "assets\/icons\/img48.png", "128": "assets\/icons\/img128.png" } } |