Copy Plus Tool

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

Qu'est-ce que Copy Plus Tool ?

Copy Plus Tool est une extension Chrome développée par Akhil Muraleedharan, et sa fonction principale est "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Copy Plus Tool

Téléchargez les fichiers d'extension Copy Plus Tool 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

                        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.                    

Informations de Base sur l'Extension

Nom Copy Plus Tool Copy Plus Tool
ID flcjgmfehnieodijengikamendknjgno
URL Officiel https://chromewebstore.google.com/detail/copy-plus-tool/flcjgmfehnieodijengikamendknjgno
Description This tool lets you make multiple text selections and copy paste it in a single step for research or note making.
Taille du Fichier 1.97 MB
Nombre d'Installations 219
Version Actuelle 1.0
Dernière Mise à Jour 2020-06-16
Date de Publication 2020-06-15
Évaluation 3.67/5 Total 3 Évaluations
Développeur Akhil Muraleedharan
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}