Easy Clipboard
Easy clipper!
什麼是Easy Clipboard?
Easy Clipboard是由therewecode開發的Chrome擴展程式,該擴展的主要功能是“Easy clipper!”。
擴展截圖
下載Easy Clipboard擴展crx文件
下載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 |
官方網址 | 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 } |