CopyCat
Keeps your clipboard history.
CopyCatคืออะไร?
CopyCat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CopyCat และคุณลักษณะหลักของมันคือ "Keeps your clipboard history."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CopyCat
ดาวน์โหลดไฟล์ส่วนขยาย CopyCat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A minimal tool used to keep track of your copies and use shortcuts to access them. shortcuts: ctrl + shift + 1 => copy 1st in queue ctrl + shift + 2 => copy 2nd in queue ctrl + shift + 3 => copy 3rd in queue
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CopyCat |
ID | plplibpncobkhfgklpdofcefahjdmgmg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/copycat/plplibpncobkhfgklpdofcefahjdmgmg |
คำอธิบาย | Keeps your clipboard history. |
ขนาดไฟล์ | 218 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-03-19 |
วันที่เผยแพร่ | 2021-03-18 |
คะแนน | 4.40/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | CopyCat |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "copyCat", "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": "imgs\/38.png", "default_popup": "popup.html", "default_title": "copyCat - Clipboard History" }, "description": "Keeps your clipboard history.", "icons": { "128": "imgs\/128.png", "16": "imgs\/16.png", "48": "imgs\/48.png" }, "manifest_version": 2, "name": "CopyCat", "offline_enabled": true, "permissions": [ "clipboardWrite", "clipboardRead" ], "version": "1.0", "commands": [ { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "MacCtrl+Shift+1" }, "description": "Paste the 1st text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "MacCtrl+Shift+2" }, "description": "Paste the 2nd text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "MacCtrl+Shift+3" }, "description": "Paste the 3rd text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+4", "mac": "MacCtrl+Shift+4" }, "description": "Paste the 4th text in the queue" } ] } |