Multicopy

Copy multiple texts and do multiple pastes from right click menu

Qu'est-ce que Multicopy ?

Multicopy est une extension Chrome développée par trishul.goel, et sa fonction principale est "Copy multiple texts and do multiple pastes from right click menu".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Multicopy

Téléchargez les fichiers d'extension Multicopy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Multicopy Multicopy
ID bbihhbmcpmmbidebeomhomjelncfghcl
URL Officiel https://chromewebstore.google.com/detail/multicopy/bbihhbmcpmmbidebeomhomjelncfghcl
Description Copy multiple texts and do multiple pastes from right click menu
Taille du Fichier 20.84 KB
Nombre d'Installations 11,063
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-04-04
Date de Publication 2019-03-08
Évaluation 3.75/5 Total 20 Évaluations
Développeur trishul.goel
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
URL de la Page d'Aide https://github.com/tsl143/jsDemos/tree/master/multicopy_webext
Langues Prises en Charge 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"
    ]
}