append-to-clipboard

Append copied text to the clipboard, optionally with separators

Vad är append-to-clipboard?

append-to-clipboard är en Chrome-tillägg utvecklad av brettz9, och dess huvudfunktion är "Append copied text to the clipboard, optionally with separators".

Tilläggsskärmbilder

screenshot

Ladda ner append-to-clipboard-förlängningens CRX-fil

Ladda ner append-to-clipboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn append-to-clipboard append-to-clipboard
ID dbpammihbikenddkkiggbdnakdoldobo
Officiell webbadress https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo
Beskrivning Append copied text to the clipboard, optionally with separators
Filstorlek 488 KB
Antal Installationer 330
Aktuell Version 3.0.0
Senast Uppdaterad 2023-12-08
Publiceringsdatum 2018-09-29
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare brettz9
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/brettz9/append-to-clipboard
Hjälpsida URL https://github.com/brettz9/append-to-clipboard/issues
Stödda Språk 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"
        }
    }
}