append-to-clipboard

Append copied text to the clipboard, optionally with separators

Hvad er append-to-clipboard?

append-to-clipboard er en Chrome-udvidelse udviklet af brettz9, og dens hovedfunktion er "Append copied text to the clipboard, optionally with separators".

Udvidelsesskærmbilleder

screenshot

Download append-to-clipboard-udvidelses-CRX-fil

Download append-to-clipboard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn append-to-clipboard append-to-clipboard
ID dbpammihbikenddkkiggbdnakdoldobo
Officiel URL https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo
Beskrivelse Append copied text to the clipboard, optionally with separators
Filstørrelse 488 KB
Antal Installationer 330
Nuværende Version 3.0.0
Senest Opdateret 2023-12-08
Udgivelsesdato 2018-09-29
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler brettz9
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/brettz9/append-to-clipboard
Hjælpeside-URL https://github.com/brettz9/append-to-clipboard/issues
Understøttede Sprog 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"
        }
    }
}