append-to-clipboard

Append copied text to the clipboard, optionally with separators

What is append-to-clipboard?

append-to-clipboard is a Chrome extension developed by brettz9, and its main feature is "Append copied text to the clipboard, optionally with separators".

Extension Screenshots

screenshot

Download append-to-clipboard Extension CRX File

Download append-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

                        Simple add-on to append to, rather than replace, current contents of the clipboard.

Choices include no separator between appends or single or double line breaks.

Works with links (text or URL), inputs, textareas, and highlighted text.                    

Extension Basic Information

Name append-to-clipboard append-to-clipboard
ID dbpammihbikenddkkiggbdnakdoldobo
Official URL https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo
Description Append copied text to the clipboard, optionally with separators
File Size 488 KB
Installation Count 330
Current Version 3.0.0
Last Updated 2023-12-08
Publish Date 2018-09-29
Rating 5.00/5 Total 2 Ratings
Developer brettz9
Email [email protected]
Payment Type free
Extension Website https://github.com/brettz9/append-to-clipboard
Help Page URL https://github.com/brettz9/append-to-clipboard/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "author": "Brett Zamir",
    "version": "3.0.0",
    "homepage_url": "https:\/\/github.com\/brettz9\/append-to-clipboard\/",
    "permissions": [
        "contextMenus",
        "storage",
        "clipboardWrite",
        "clipboardRead",
        "activeTab",
        "scripting"
    ],
    "background": {
        "type": "module",
        "service_worker": "lib\/background.js"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "browser_specific_settings": {
        "gecko": {
            "id": "jid0-o20OcJEteABtgjFUKPfXyQhRIQg@jetpack"
        }
    }
}