Copy Plus Tool

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

Hvad er Copy Plus Tool?

Copy Plus Tool er en Chrome-udvidelse udviklet af Akhil Muraleedharan, og dens hovedfunktion er "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Copy Plus Tool-udvidelses-CRX-fil

Download Copy Plus Tool-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Copy Plus Tool Copy Plus Tool
ID flcjgmfehnieodijengikamendknjgno
Officiel URL https://chromewebstore.google.com/detail/copy-plus-tool/flcjgmfehnieodijengikamendknjgno
Beskrivelse This tool lets you make multiple text selections and copy paste it in a single step for research or note making.
Filstørrelse 1.97 MB
Antal Installationer 219
Nuværende Version 1.0
Senest Opdateret 2020-06-16
Udgivelsesdato 2020-06-15
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler Akhil Muraleedharan
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}