Clipboard++

Copy text without all the fuss.

O que é Clipboard++?

Clipboard++ é uma extensão do Chrome desenvolvida por fatshogun, e sua principal característica é "Copy text without all the fuss.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Clipboard++

Baixe arquivos de extensão Clipboard++ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Clipboard++ Clipboard++
ID ahmpmpopolpgcemeglalopfjnofakekh
URL Oficial https://chrome.google.com/webstore/detail/clipboard++/ahmpmpopolpgcemeglalopfjnofakekh
Descrição Copy text without all the fuss.
Tamanho do Arquivo 388 KB
Contagem de Instalações 239
Versão Atual 1.1
Última Atualização 2016-02-14
Data de Publicação 2016-02-11
Classificação 4.00/5 Total de 9 Avaliações
Desenvolvedor fatshogun
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}