Clipboard History
Extension to save history of copied text in browser
Clipboard History là gì?
Clipboard History là một tiện ích mở rộng Chrome được phát triển bởi Saif As, và tính năng chính của nó là "Extension to save history of copied text in browser".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Clipboard History
Tải xuống các tệp mở rộng Clipboard History dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
it saves each item copied on the clipboard allowing access to any of those items at any time later. Features: ● Hovering on one item will show all the text content in the tooltip ● Clicking on one item will copy the text to clipboard ● Searching for text will search all the items for matching text ● Clicking on the X button near each item will delete the item from the list ● Clicking on clear saved text will clear all the saved text Isn't working as expected? Please send me mail to: [email protected]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Clipboard History |
ID | mhokbaagmjlbflncohdhinppihlojpco |
URL Chính Thức | https://chromewebstore.google.com/detail/clipboard-history/mhokbaagmjlbflncohdhinppihlojpco |
Mô tả | Extension to save history of copied text in browser |
Kích Thước Tệp | 177 KB |
Số Lần Cài Đặt | 1,677 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2021-11-01 |
Ngày Phát Hành | 2020-07-15 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Saif As |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Clipboard History", "version": "1.5", "description": "Extension to save history of copied text in browser", "permissions": [ "storage" ], "icons": { "128": "icons\/icon128.png", "256": "icons\/icon256.png", "512": "icons\/icon512.png" }, "action": { "default_icon": "icons\/icon512.png", "default_popup": "src\/browser_actions\/popup.html", "default_title": "Clipboard History" }, "background": { "service_worker": "src\/bg\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "src\/browser_actions\/content.js" ] } ] } |