Multicopy

Copy multiple texts and do multiple pastes from right click menu

Multicopy là gì?

Multicopy là một tiện ích mở rộng Chrome được phát triển bởi trishul.goel, và tính năng chính của nó là "Copy multiple texts and do multiple pastes from right click menu".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Multicopy 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

                        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.                    

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

Tên Multicopy Multicopy
ID bbihhbmcpmmbidebeomhomjelncfghcl
URL Chính Thức https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl
Mô tả Copy multiple texts and do multiple pastes from right click menu
Kích Thước Tệp 20.84 KB
Số Lần Cài Đặt 11,063
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-04-04
Ngày Phát Hành 2019-03-08
Đánh Giá 3.75/5 Tổng số 20 Đánh Giá
Nhà Phát Triển trishul.goel
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
URL Trang Trợ Giúp https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}