Copy Plus Tool

This tool lets you make multiple text selections and copy paste it in a single step for research or note making.

Wat is Copy Plus Tool?

Copy Plus Tool is een Chrome-extensie ontwikkeld door Akhil Muraleedharan, en de belangrijkste functie is "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Copy Plus Tool

Download Copy Plus Tool-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

                        Have you ever had to copy several different parts of an article on a web page onto a Word Document? Or simply make notes from Wikipedia by copying different lines in different paragraphs? Instead of copying and pasting each line or selection individually, this tool lets you make different selections that you need on the web page and copy it all together and paste it where you want in a single go. You can use this tool to select relevant portions on a page and copy them as you read without having to switch tabs and paste it somewhere for each selection you make. This helps you save time not only in switching tabs but also giving you the ability to copy as you read without breaking your concentration. 

Usage Instructions
Once the extension is active, it offers you the following features.

Copying text
Select whatever text you want to copy. Hit the Shift button on your keyboard and the text will be added to a virtual clipboard. Select more text you want to copy and with each selection hit the Shift key to copy the selection. Once you're done copying all the text you need, hit the 'c' key on your keyboard and all the selected text will now be copied to your system clipboard. You can paste it anywhere you like.

Removing a selection
Holding the Ctrl key while pressing the Shift deletes the last selection from the virtual clipboard so that this will not be included in the final copied text.

Choose the separator for pasting
Before you copy the text to the clipboard (ie before hitting the 'c' key on your keyboard), you can choose what separator you would like to use while pasting the various selections that you are about to copy. Click on the extension icon in the Chrome toolbar and choose With new line to paste content separated by a newline between each copied selection. Choose With a white space to paste the selections separated by a white space. Click the OK button to confirm your choice. Default choice is newline.

Disabling/Enabling the extension
In case the extension interrupts with other extensions or creates problems for you with the keyboard shortcuts, you can quickly disable its working by clicking on the extension icon and clicking on the Disable/Enable This Extension. The "ON" or "OFF" badge on the extension icon will denote the status of the extension. To enable it, simply repeat the same procedure.                    

Basisinformatie over de Extensie

Naam Copy Plus Tool Copy Plus Tool
ID flcjgmfehnieodijengikamendknjgno
Officiële URL https://chromewebstore.google.com/detail/copy-plus-tool/flcjgmfehnieodijengikamendknjgno
Beschrijving This tool lets you make multiple text selections and copy paste it in a single step for research or note making.
Bestandsgrootte 1.97 MB
Aantal Installaties 219
Huidige Versie 1.0
Laatst Bijgewerkt 2020-06-16
Publicatiedatum 2020-06-15
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Akhil Muraleedharan
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Plus Tool",
    "version": "1.0",
    "description": "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "assets\/copy_plus_icon16.png",
        "32": "assets\/copy_plus_icon32.png",
        "48": "assets\/copy_plus_icon48.png",
        "128": "assets\/copy_plus_icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}