Copy Plus Tool

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

Что такое Copy Plus Tool?

Copy Plus Tool - это расширение Chrome, разработанное Akhil Muraleedharan, и его основная функция - "This tool lets you make multiple text selections and copy paste it in a single step for research or note making.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Copy Plus Tool

Скачайте файлы расширений Copy Plus Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Copy Plus Tool Copy Plus Tool
ID flcjgmfehnieodijengikamendknjgno
Официальный URL https://chromewebstore.google.com/detail/copy-plus-tool/flcjgmfehnieodijengikamendknjgno
Описание This tool lets you make multiple text selections and copy paste it in a single step for research or note making.
Размер файла 1.97 MB
Количество установок 219
Текущая Версия 1.0
Последнее Обновление 2020-06-16
Дата публикации 2020-06-15
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Akhil Muraleedharan
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}