append-to-clipboard

Append copied text to the clipboard, optionally with separators

Apa itu append-to-clipboard?

append-to-clipboard adalah ekstensi Chrome yang dikembangkan oleh brettz9, dan fitur utamanya adalah "Append copied text to the clipboard, optionally with separators".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi append-to-clipboard

Unduh file ekstensi append-to-clipboard dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama append-to-clipboard append-to-clipboard
ID dbpammihbikenddkkiggbdnakdoldobo
URL Resmi https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo
Deskripsi Append copied text to the clipboard, optionally with separators
Ukuran File 488 KB
Jumlah Instalasi 330
Versi Saat Ini 3.0.0
Terakhir Diperbarui 2023-12-08
Tanggal Publikasi 2018-09-29
Penilaian 5.00/5 Total 2 Penilaian
Pengembang brettz9
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/brettz9/append-to-clipboard
URL Halaman Bantuan https://github.com/brettz9/append-to-clipboard/issues
Bahasa yang Didukung 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"
        }
    }
}