CopyCat

Keeps your clipboard history.

CopyCat란 무엇입니까?

CopyCat은(는) CopyCat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keeps your clipboard history."입니다.

확장 프로그램 스크린샷

screenshot

CopyCat 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
        }
    ]
}