SmartCopy
Smart copying Text
SmartCopyคืออะไร?
SmartCopy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ferunelli222 และคุณลักษณะหลักของมันคือ "Smart copying Text"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SmartCopy
ดาวน์โหลดไฟล์ส่วนขยาย SmartCopy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Умное копирование текста. 1. Выделите текст, который хотите скопировать. 2. Нажмите сочетание клавиш. 3. Вставьте полученную строчку из буфера обмена Сочетания клавиш: 1. Ctrl + shift + 1 - Копирование текста без изменений 2. Ctrl + shift + 2 - Копирование текст в нижнем регистре 3. Ctrl + shift + 3 - Копирование текста в верхнем регистре 4. Ctrl + shift + q - Копирование текста с чередованием регистров
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SmartCopy |
ID | eobahfogffmfkcfhcnoakfmmpldoechf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/smartcopy/eobahfogffmfkcfhcnoakfmmpldoechf |
คำอธิบาย | Smart copying Text |
ขนาดไฟล์ | 146 KB |
จำนวนการติดตั้ง | 53 |
เวอร์ชันปัจจุบัน | 1.2.2 |
อัปเดตครั้งล่าสุด | 2019-04-15 |
วันที่เผยแพร่ | 2019-04-15 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | ferunelli222 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SmartCopy", "short_name": "SCopy", "version": "1.2.2", "description": "Smart copying Text", "manifest_version": 2, "browser_action": { "default_icon": "SmartCopy.png" }, "background": { "scripts": [ "act.js" ], "persistent": false }, "permissions": [ "activeTab", "clipboardWrite" ], "commands": { "doAnAction": { "suggested_key": { "default": "Ctrl+Shift+Q", "mac": "Command+Shift+Q", "linux": "Ctrl+Shift+Q" }, "description": "Making your letters Upper case through 1 letter" }, "JustCopy": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1", "linux": "Ctrl+Shift+1" }, "description": "Copy text from forbidden area" }, "allLower": { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "Command+Shift+2", "linux": "Ctrl+Shift+2" }, "description": "Making your letters Lower case" }, "allUpper": { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "Command+Shift+3", "linux": "Ctrl+Shift+3" }, "description": "Making your letters Upper case" } } } |