append-to-clipboard

Append copied text to the clipboard, optionally with separators

append-to-clipboard là gì?

append-to-clipboard là một tiện ích mở rộng Chrome được phát triển bởi brettz9, và tính năng chính của nó là "Append copied text to the clipboard, optionally with separators".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng append-to-clipboard

Tải xuống các tệp mở rộng append-to-clipboard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên append-to-clipboard append-to-clipboard
ID dbpammihbikenddkkiggbdnakdoldobo
URL Chính Thức https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo
Mô tả Append copied text to the clipboard, optionally with separators
Kích Thước Tệp 488 KB
Số Lần Cài Đặt 330
Phiên Bản Hiện Tại 3.0.0
Cập Nhật Lần Cuối 2023-12-08
Ngày Phát Hành 2018-09-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển brettz9
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/brettz9/append-to-clipboard
URL Trang Trợ Giúp https://github.com/brettz9/append-to-clipboard/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}