Clipboard++

Copy text without all the fuss.

Clipboard++란 무엇입니까?

Clipboard++은(는) fatshogun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy text without all the fuss."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Clipboard++ is where the clipboard of your dreams meets the highlighter of the future. 

[Ctrl + Click]: Copy and highlight sentence
[Ctrl + C (selection)]: Copy and highlight selection
[Ctrl + Z]: Undo previous selection
[Ctrl + Shift + Z]: Unhighlight entire page
[Ctrl + /]: Enable/Disable for page
[Ctrl + Left/Right Arrow]: Change highlight color

Holding Ctrl and clicking a sentence highlights that sentence and places it in your clipboard. Selecting text and copying it also highlights that text. All of those sentences and text are stored in the background separately for every page, so that you can easily export them to text files, export them all into one single text file or do whatever you please with them. 

One of your most beloved features will be the all mighty Undo. Just hit [Ctrl + Z] and the last sentence or piece of text you selected will be removed from the background storage, the highlight will be removed, and best of all, the previous selected text will be placed back in your clipboard.

Hitting [Ctrl + Shift + Z] will remove all highlights on the current page and also remove all text from the background storage for that page.

The colour for the highlighter is easily changed by pressing [Ctrl + Left Arrow] or [Ctrl + Right Arrow]. 

Clipboard++ is turned on and off by toggling it with [Ctrl + /].

For all of you text junkies, this is your final tool! Enjoy :)                    

확장 프로그램 기본 정보

이름 Clipboard++ Clipboard++
ID ahmpmpopolpgcemeglalopfjnofakekh
공식 URL https://chrome.google.com/webstore/detail/clipboard++/ahmpmpopolpgcemeglalopfjnofakekh
설명 Copy text without all the fuss.
파일 크기 388 KB
설치 횟수 239
현재 버전 1.1
최근 업데이트 2016-02-14
출시 날짜 2016-02-11
평점 4.00/5 총 9 개의 평점
개발자 fatshogun
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Clipboard++",
    "description": "Copy text without all the fuss.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/jquery-2.2.0.min.js",
                "scripts\/rangy-core.js",
                "scripts\/rangy-classapplier.js",
                "scripts\/rangy-highlighter.js",
                "scripts\/rangy-textrange.js",
                "scripts\/content.min.js"
            ],
            "css": [
                "styles\/content.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/clipboardPPLogo32.png",
        "default_popup": "popup.html",
        "default_title": "Genius Clipboard"
    },
    "icons": {
        "16": "images\/clipboardPPLogo16.png",
        "48": "images\/clipboardPPLogo48.png",
        "128": "images\/clipboardPPLogo128.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "",
        "contextMenus",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "images\/clipboardPPCursor.png"
    ]
}