Clipboard++

Copy text without all the fuss.

Qu'est-ce que Clipboard++ ?

Clipboard++ est une extension Chrome développée par fatshogun, et sa fonction principale est "Copy text without all the fuss.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Clipboard++

Téléchargez les fichiers d'extension Clipboard++ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Clipboard++ Clipboard++
ID ahmpmpopolpgcemeglalopfjnofakekh
URL Officiel https://chrome.google.com/webstore/detail/clipboard++/ahmpmpopolpgcemeglalopfjnofakekh
Description Copy text without all the fuss.
Taille du Fichier 388 KB
Nombre d'Installations 239
Version Actuelle 1.1
Dernière Mise à Jour 2016-02-14
Date de Publication 2016-02-11
Évaluation 4.00/5 Total 9 Évaluations
Développeur fatshogun
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}