append-to-clipboard
Append copied text to the clipboard, optionally with separators
Was ist append-to-clipboard?
append-to-clipboard ist eine Chrome-Erweiterung, die von brettz9 entwickelt wurde, und ihr Hauptmerkmal ist "Append copied text to the clipboard, optionally with separators".
Erweiterungsscreenshots
append-to-clipboard-Erweiterungs-CRX-Datei herunterladen
Laden Sie append-to-clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | append-to-clipboard |
ID | dbpammihbikenddkkiggbdnakdoldobo |
Offizielle URL | https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo |
Beschreibung | Append copied text to the clipboard, optionally with separators |
Dateigröße | 488 KB |
Installationsanzahl | 330 |
Aktuelle Version | 3.0.0 |
Letztes Update | 2023-12-08 |
Veröffentlichungsdatum | 2018-09-29 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | brettz9 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/brettz9/append-to-clipboard |
Hilfeseite URL | https://github.com/brettz9/append-to-clipboard/issues |
Unterstützte Sprachen | 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" } } } |