Easy Clipboard
Easy clipper!
Easy Clipboardคืออะไร?
Easy Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย therewecode และคุณลักษณะหลักของมันคือ "Easy clipper!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Easy Clipboard
ดาวน์โหลดไฟล์ส่วนขยาย Easy Clipboard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ealiflicbcijkeeapfglpcghlcocioic |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/easy-clipboard/ealiflicbcijkeeapfglpcghlcocioic |
คำอธิบาย | Easy clipper! |
ขนาดไฟล์ | 22.03 KB |
จำนวนการติดตั้ง | 569 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2021-04-06 |
วันที่เผยแพร่ | 2019-01-02 |
คะแนน | 4.50/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | therewecode |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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 } |