Clipboard++

Copy text without all the fuss.

Co to jest Clipboard++?

Clipboard++ to rozszerzenie Chrome opracowane przez fatshogun, a jego główną funkcją jest „Copy text without all the fuss.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Clipboard++

Pobierz pliki rozszerzeń Clipboard++ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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 :)                    

Podstawowe informacje o rozszerzeniu

Nazwa Clipboard++ Clipboard++
ID ahmpmpopolpgcemeglalopfjnofakekh
Oficjalny URL https://chrome.google.com/webstore/detail/clipboard++/ahmpmpopolpgcemeglalopfjnofakekh
Opis Copy text without all the fuss.
Rozmiar pliku 388 KB
Liczba instalacji 239
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-02-14
Data Publikacji 2016-02-11
Ocena 4.00/5 Łącznie 9 Oceny
Deweloper fatshogun
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}