Clipboard++

Copy text without all the fuss.

Wat is Clipboard++?

Clipboard++ is een Chrome-extensie ontwikkeld door fatshogun, en de belangrijkste functie is "Copy text without all the fuss.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Clipboard++

Download Clipboard++-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Clipboard++ Clipboard++
ID ahmpmpopolpgcemeglalopfjnofakekh
Officiële URL https://chrome.google.com/webstore/detail/clipboard++/ahmpmpopolpgcemeglalopfjnofakekh
Beschrijving Copy text without all the fuss.
Bestandsgrootte 388 KB
Aantal Installaties 239
Huidige Versie 1.1
Laatst Bijgewerkt 2016-02-14
Publicatiedatum 2016-02-11
Beoordeling 4.00/5 Totaal 9 Beoordelingen
Ontwikkelaar fatshogun
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}