Multicopy

Copy multiple texts and do multiple pastes from right click menu

Was ist Multicopy?

Multicopy ist eine Chrome-Erweiterung, die von trishul.goel entwickelt wurde, und ihr Hauptmerkmal ist "Copy multiple texts and do multiple pastes from right click menu".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Multicopy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Multicopy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Multicopy Multicopy
ID bbihhbmcpmmbidebeomhomjelncfghcl
Offizielle URL https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl
Beschreibung Copy multiple texts and do multiple pastes from right click menu
Dateigröße 20.84 KB
Installationsanzahl 11,063
Aktuelle Version 1.0.0
Letztes Update 2021-04-04
Veröffentlichungsdatum 2019-03-08
Bewertung 3.75/5 Insgesamt 20 Bewertungen
Entwickler trishul.goel
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
Hilfeseite URL https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
Unterstützte Sprachen 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"
    ]
}