CopyCat
Keeps your clipboard history.
什麼是CopyCat?
CopyCat是由CopyCat開發的Chrome擴展程式,該擴展的主要功能是“Keeps your clipboard history.”。
擴展截圖
下載CopyCat擴展crx文件
下載CopyCat擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A minimal tool used to keep track of your copies and use shortcuts to access them. shortcuts: ctrl + shift + 1 => copy 1st in queue ctrl + shift + 2 => copy 2nd in queue ctrl + shift + 3 => copy 3rd in queue
擴展基本資訊
名稱 | CopyCat |
ID | plplibpncobkhfgklpdofcefahjdmgmg |
官方網址 | https://chromewebstore.google.com/detail/copycat/plplibpncobkhfgklpdofcefahjdmgmg |
簡介 | Keeps your clipboard history. |
檔案大小 | 218 KB |
安裝次數 | 68 |
目前版本 | 1.0 |
更新時間 | 2021-03-19 |
上架時間 | 2021-03-18 |
評分 | 4.40/5 共 5 次評分 |
開發者 | CopyCat |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "copyCat", "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": "imgs\/38.png", "default_popup": "popup.html", "default_title": "copyCat - Clipboard History" }, "description": "Keeps your clipboard history.", "icons": { "128": "imgs\/128.png", "16": "imgs\/16.png", "48": "imgs\/48.png" }, "manifest_version": 2, "name": "CopyCat", "offline_enabled": true, "permissions": [ "clipboardWrite", "clipboardRead" ], "version": "1.0", "commands": [ { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "MacCtrl+Shift+1" }, "description": "Paste the 1st text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "MacCtrl+Shift+2" }, "description": "Paste the 2nd text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "MacCtrl+Shift+3" }, "description": "Paste the 3rd text in the queue" }, { "suggested_key": { "default": "Ctrl+Shift+4", "mac": "MacCtrl+Shift+4" }, "description": "Paste the 4th text in the queue" } ] } |