Easy Clipboard
Easy clipper!
Easy Clipboard là gì?
Easy Clipboard là một tiện ích mở rộng Chrome được phát triển bởi therewecode, và tính năng chính của nó là "Easy clipper!".
Ả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 Easy Clipboard
Tải xuống các tệp mở rộng Easy Clipboard 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
This Chrome extension lets you paste your text through the right click button. It will save the time for those who frequently have to paste information in certain fields online. This will replace your clipboard and save you a lot of time! Simply add your common texts in the popup window by clicking on the Easy Clipboard icon on the top right side. Add category, title and text. After you can access it immediately through right click menu option and it will embed the text directly in the text field. This chrome extension will sync up your data across all your devices that has Chrome on! Just make sure to sign in to your Chrome browser and it will backup the data automatically!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ealiflicbcijkeeapfglpcghlcocioic |
URL Chính Thức | https://chrome.google.com/webstore/detail/easy-clipboard/ealiflicbcijkeeapfglpcghlcocioic |
Mô tả | Easy clipper! |
Kích Thước Tệp | 22.03 KB |
Số Lần Cài Đặt | 569 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2021-04-06 |
Ngày Phát Hành | 2019-01-02 |
Đánh Giá | 4.50/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | therewecode |
[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", "name": "Easy Clipboard", "version": "1.1", "description": "Easy clipper!", "permissions": [ "activeTab", "declarativeContent", "storage", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "background": { "persistent": true, "scripts": [ "dbFacade.js", "background.js" ] }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |