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
官方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"
    ]
}