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 扩展基本信息
| 名称 | |
| ID | plplibpncobkhfgklpdofcefahjdmgmg |
| 官方URL | 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"
}
]
} | |