ManyClip

A stack based copy/paste extension for Chrome.

Wat is ManyClip?

ManyClip is een Chrome-extensie ontwikkeld door John Wiegert, en de belangrijkste functie is "A stack based copy/paste extension for Chrome.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ManyClip

Download ManyClip-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
Officiële URL https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
Beschrijving A stack based copy/paste extension for Chrome.
Bestandsgrootte 42.25 KB
Aantal Installaties 245
Huidige Versie 0.2.0
Laatst Bijgewerkt 2017-07-29
Publicatiedatum 2017-07-29
Beoordeling 2.00/5 Totaal 1 Beoordelingen
Ontwikkelaar John Wiegert
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/bigcakes/ManyClip
Help Pagina-URL https://github.com/bigcakes/ManyClip
Ondersteunde Talen 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"
    ]
}