ManyClip

A stack based copy/paste extension for Chrome.

What is ManyClip?

ManyClip is a Chrome extension developed by John Wiegert, and its main feature is "A stack based copy/paste extension for Chrome.".

Extension Screenshots

screenshot

Download ManyClip Extension CRX File

Download ManyClip extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
Official URL https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
Description A stack based copy/paste extension for Chrome.
File Size 42.25 KB
Installation Count 245
Current Version 0.2.0
Last Updated 2017-07-29
Publish Date 2017-07-29
Rating 2.00/5 Total 1 Ratings
Developer John Wiegert
Email [email protected]
Payment Type free
Extension Website https://github.com/bigcakes/ManyClip
Help Page URL https://github.com/bigcakes/ManyClip
Supported Languages 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"
    ]
}