append-to-clipboard
Append copied text to the clipboard, optionally with separators
Wat is append-to-clipboard?
append-to-clipboard is een Chrome-extensie ontwikkeld door brettz9, en de belangrijkste functie is "Append copied text to the clipboard, optionally with separators".
Extensie Screenshots
Download het CRX-bestand van de extensie append-to-clipboard
Download append-to-clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | append-to-clipboard |
ID | dbpammihbikenddkkiggbdnakdoldobo |
Officiële URL | https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo |
Beschrijving | Append copied text to the clipboard, optionally with separators |
Bestandsgrootte | 488 KB |
Aantal Installaties | 330 |
Huidige Versie | 3.0.0 |
Laatst Bijgewerkt | 2023-12-08 |
Publicatiedatum | 2018-09-29 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | brettz9 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/brettz9/append-to-clipboard |
Help Pagina-URL | https://github.com/brettz9/append-to-clipboard/issues |
Ondersteunde Talen | 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" } } } |