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
Eメール [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"
    ]
}