Copy Plus Tool

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

O que é Copy Plus Tool?

Copy Plus Tool é uma extensão do Chrome desenvolvida por Akhil Muraleedharan, e sua principal característica é "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Copy Plus Tool

Baixe arquivos de extensão Copy Plus Tool 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

                        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.                    

Informações Básicas da Extensão

Nome Copy Plus Tool Copy Plus Tool
ID flcjgmfehnieodijengikamendknjgno
URL Oficial https://chromewebstore.google.com/detail/copy-plus-tool/flcjgmfehnieodijengikamendknjgno
Descrição This tool lets you make multiple text selections and copy paste it in a single step for research or note making.
Tamanho do Arquivo 1.97 MB
Contagem de Instalações 219
Versão Atual 1.0
Última Atualização 2020-06-16
Data de Publicação 2020-06-15
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Akhil Muraleedharan
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}