Multicopy

Copy multiple texts and do multiple pastes from right click menu

Multicopyคืออะไร?

Multicopy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย trishul.goel และคุณลักษณะหลักของมันคือ "Copy multiple texts and do multiple pastes from right click menu"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Multicopy

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

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

                        A usability extension, which lets you to copy multiple texts and shows them in right click menu. Paste any of the text in any input field.

To Copy: Right click on selected text -> Multicopy -> Copy this!
To Paste: Right click on text area -> Multicopy -> Select the entry

In some case for paste if clicking entry doesn't work (probably like Facebook), the text is copied to clipboard and you can press Ctrl(command) + V to paste the text in to the box.                    

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

ชื่อ Multicopy Multicopy
ID bbihhbmcpmmbidebeomhomjelncfghcl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl
คำอธิบาย Copy multiple texts and do multiple pastes from right click menu
ขนาดไฟล์ 20.84 KB
จำนวนการติดตั้ง 11,063
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-04-04
วันที่เผยแพร่ 2019-03-08
คะแนน 3.75/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา trishul.goel
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
URL หน้าช่วยเหลือ https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Multicopy",
    "description": "Copy multiple texts and do multiple pastes from right click menu",
    "version": "1.0.0",
    "icons": {
        "32": "icons\/icon_32.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "polyfill.js",
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "notifications",
        "storage",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        "icons\/icon_64.png"
    ]
}