Multicopy

Copy multiple texts and do multiple pastes from right click menu

什麼是Multicopy?

Multicopy是由trishul.goel開發的Chrome擴展程式,該擴展的主要功能是“Copy multiple texts and do multiple pastes from right click menu”。

擴展截圖

screenshot
screenshot
screenshot

下載Multicopy擴展crx文件

下載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
官方網址 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"
    ]
}