CopyCat
Keeps your clipboard history.
Что такое CopyCat?
CopyCat - это расширение Chrome, разработанное CopyCat, и его основная функция - "Keeps your clipboard history.".
Снимки экрана расширения
Скачать файл CRX расширения CopyCat
Скачайте файлы расширений 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 |
Официальный 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" } ] } |