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 |
公式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 |
Eメール | [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" } ] } |