Clipboard History Manager
A full-featured desktop clipboard manager for Mac, Windows and Linux to record what you copy to the clipboard
Clipboard History Managerคืออะไร?
Clipboard History Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lunu.bounir และคุณลักษณะหลักของมันคือ "A full-featured desktop clipboard manager for Mac, Windows and Linux to record what you copy to the clipboard"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Clipboard History Manager
ดาวน์โหลดไฟล์ส่วนขยาย Clipboard History Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension only works on Linux, Windows and Mac OS at this moment. Support for Chrome OS is in progress (https://github.com/lunu-bounir/clipboard-manager/issues/1) A powerful clipboard manager with a searchable database that can store hundreds of items without any performance drawbacks. This extension has a very simple native component written in c++ that monitors clipboard changes system-wide and notifies the extension about the changes. This way first the extension can monitor clipboard without polling (continuous check with fixed interval) and second it can get notified even if clipboard content is changed by a process out of your browser environment. Notes: 1. Each clipboard content can be up to 1Mbytes in size 2. Each item is being indexed, so it can be searched later. The searching system is very powerful that supports wildcard matching and search operators like "OR" and "AND" 3. Each clipboard entry can be pinned to prevent auto clean-up module from removing it if the total number of clipboards reach 1000 items. 4. To search among pinned items append "keyword:pinned" to your search query 5. To move an entry from the UI to the clipboard, press the Enter key or double-click on the entry. 6. At this point, the extension does not support the automatic insertion of the clipboard content (the c++ component does not support it at this moment) 7. The c++ component is compiled with https://travis-ci.org/lunu-bounir/clipboard-helper 8. This extension is meant to replace the need to use native clipboard managers 9. At this point, only Windows and Mac operating systems are supported. If you can help with Linux port, please open a GitHub bug report 10. The extension supports query stemming in 20 languages.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Clipboard History Manager |
ID | pkigjgihlaonoomgjgannieikjecdhil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/clipboard-history-manager/pkigjgihlaonoomgjgannieikjecdhil |
คำอธิบาย | A full-featured desktop clipboard manager for Mac, Windows and Linux to record what you copy to the clipboard |
ขนาดไฟล์ | 534 KB |
จำนวนการติดตั้ง | 555 |
เวอร์ชันปัจจุบัน | 0.2.1 |
อัปเดตครั้งล่าสุด | 2022-01-11 |
วันที่เผยแพร่ | 2020-06-15 |
คะแนน | 3.38/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | lunu.bounir |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://add0n.com/clipboard-manager.html |
URL หน้าช่วยเหลือ | https://add0n.com/clipboard-manager.html |
URL หน้านโยบายความเป็นส่วนตัว | https://add0n.com/policies/lunu.bounir.txt |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.2.1", "name": "Clipboard History Manager", "description": "A full-featured desktop clipboard manager for Mac, Windows and Linux to record what you copy to the clipboard", "offline_enabled": true, "permissions": [ "idle", "storage", "nativeMessaging", "unlimitedStorage" ], "homepage_url": "https:\/\/add0n.com\/clipboard-manager.html", "background": { "scripts": [ "monitor.js", "md5.js", "background.js" ] }, "icons": { "16": "data\/icons\/16.png", "19": "data\/icons\/19.png", "32": "data\/icons\/32.png", "38": "data\/icons\/38.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "browser_action": [], "commands": { "open": { "description": "Open the manager in a standalone window" } }, "options_ui": { "page": "data\/options\/index.html", "chrome_style": true, "open_in_tab": true } } |