append-to-clipboard

Append copied text to the clipboard, optionally with separators

append-to-clipboardคืออะไร?

append-to-clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brettz9 และคุณลักษณะหลักของมันคือ "Append copied text to the clipboard, optionally with separators"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย append-to-clipboard

ดาวน์โหลดไฟล์ส่วนขยาย append-to-clipboard ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ append-to-clipboard append-to-clipboard
ID dbpammihbikenddkkiggbdnakdoldobo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/append-to-clipboard/dbpammihbikenddkkiggbdnakdoldobo
คำอธิบาย Append copied text to the clipboard, optionally with separators
ขนาดไฟล์ 488 KB
จำนวนการติดตั้ง 330
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2023-12-08
วันที่เผยแพร่ 2018-09-29
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา brettz9
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/brettz9/append-to-clipboard
URL หน้าช่วยเหลือ https://github.com/brettz9/append-to-clipboard/issues
ภาษาที่รองรับ 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"
        }
    }
}