ManyClip

A stack based copy/paste extension for Chrome.

Qu'est-ce que ManyClip ?

ManyClip est une extension Chrome développée par John Wiegert, et sa fonction principale est "A stack based copy/paste extension for Chrome.".

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension ManyClip 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

                        This free, Open Source extension allows you to copy and paste stacks of text or data, making clipboard use even faster and more convenient in Chrome.
It’s easy to use:
1.       Highlight the text you’d like to copy

2.       Add it to clipboard with CTRL+ALT+C

3.       Repeat steps 1 & 2 as needed

4.       Paste each piece in reverse with CTRL+ALT+V

Perfect for making lists, speeding up data entry, streamlining the process of filling out online forms, and more!

If you have any issues please email the developer at [email protected] or file an issue at https://github.com/bigcakes/ManyClip                    

Informations de Base sur l'Extension

Nom ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
URL Officiel https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
Description A stack based copy/paste extension for Chrome.
Taille du Fichier 42.25 KB
Nombre d'Installations 245
Version Actuelle 0.2.0
Dernière Mise à Jour 2017-07-29
Date de Publication 2017-07-29
Évaluation 2.00/5 Total 1 Évaluations
Développeur John Wiegert
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/bigcakes/ManyClip
URL de la Page d'Aide https://github.com/bigcakes/ManyClip
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ManyClip",
    "description": "A stack based copy\/paste extension for Chrome.",
    "version": "0.2.0",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icons\/manyclip_48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/manyclip_16.png",
        "48": "icons\/manyclip_48.png",
        "128": "icons\/manyclip_128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "clipboardRead",
        "storage",
        "unlimitedStorage"
    ]
}