Append Text To Clipboard

Append selected text to clipboard.

What is Append Text To Clipboard?

Append Text To Clipboard is a Chrome extension developed by kppk05, and its main feature is "Append selected text to clipboard.".

Extension Screenshots

screenshot

Download Append Text To Clipboard Extension CRX File

Download Append Text To Clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Append selected text to a clipboard.
(A clipboard is a temporary storage area for datas that has been cut or copied from a document. )

[Usage (Use shortcut key)] Only two step!
1. Select text by drag.
2-1("Append"). Push Alt+C(on Windows) or Option+C(on Mac).
2-2("Append with newline"). Push Alt+Shift+C(on Windows) or Option+Shift+C(on Mac).

[Usage (Use context menu)]
1. Select text by drag.
2. Open context menu by right click.
3. Click "Append" or "Append with newline".

[Other(Clear clipboard)]
+ You can clear clipboard to push Alt+(Shift+)C(on Windows) or Option+(Shift+)C(on Mac) when no text selected.                    

Extension Basic Information

Name Append Text To Clipboard Append Text To Clipboard
ID mcgpfgockbdjabkddlfbomppijopocgn
Official URL https://chromewebstore.google.com/detail/append-text-to-clipboard/mcgpfgockbdjabkddlfbomppijopocgn
Description Append selected text to clipboard.
File Size 27.56 KB
Installation Count 390
Current Version 1.0.0
Last Updated 2019-08-10
Publish Date 2019-08-10
Rating 3.00/5 Total 2 Ratings
Developer kppk05
Payment Type free
Extension Website https://github.com/copan31/chrome_AddMoreTextToClipboard
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Append Text To Clipboard",
    "version": "1.0.0",
    "author": "kppk05",
    "description": "Append selected text to clipboard.",
    "icons": {
        "64": "icons\/icon-appendtexttoclipboard-64.png",
        "32": "icons\/icon-appendtexttoclipboard-32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-scripts\/content-appendtexttoclipboard.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background-scripts\/background-appendtexttoclipboard.js"
        ]
    },
    "commands": {
        "toggle-Append": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Append text"
        },
        "toggle-Append-With-New-Line": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Append text with new line"
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "notifications",
        "clipboardWrite",
        "clipboardRead"
    ]
}