SaveMyClips

SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.

SaveMyClips란 무엇입니까?

SaveMyClips은(는) sagnew92에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        SaveMyClips keeps a history of your current Chrome session's clipboard activity. If you accidentally copy over something that you wanted to keep track of, you can revert to your previous clipboard content. 

How to use:

The keyboard shortcuts to navigate your clipboard are Alt+O to go backwards, and Alt+P to go forwards. The clipboard content is stored in chronological order of when it was copied.

In order to view every piece of clipboard content from the current Chrome session, click on the browser action icon. This will display text boxes containing everything that was copied in this session, allowing you to reselect any text that you previously had in your clipboard.                    

확장 프로그램 기본 정보

이름 SaveMyClips SaveMyClips
ID inbmbkfkikgfjcjhgkoofielljhoipfe
공식 URL https://chromewebstore.google.com/detail/savemyclips/inbmbkfkikgfjcjhgkoofielljhoipfe
설명 SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.
파일 크기 15.01 KB
설치 횟수 453
현재 버전 1.0
최근 업데이트 2013-11-15
출시 날짜 2013-11-14
평점 1.00/5 총 1 개의 평점
개발자 sagnew92
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SaveMyClips",
    "description": "SaveMyClips keeps track of things that you copy in your clipboard so you don't lose them.",
    "version": "1.0",
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "permissions": [
        "clipboardWrite",
        "clipboardRead",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/copylisten.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "imgs\/icon128.png",
        "default_popup": "display.html"
    },
    "background": {
        "scripts": [
            "scripts\/clipboard.js",
            "scripts\/background.js"
        ]
    },
    "commands": {
        "back": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "Allows the user to go to the previous clipboard item."
        },
        "forward": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Allows the user to go to the next clipboard item."
        }
    }
}