ManyClip

A stack based copy/paste extension for Chrome.

什么是ManyClip?

ManyClip是由John Wiegert开发的Chrome扩展程序,该扩展的主要功能是“A stack based copy/paste extension for Chrome.”。

扩展截图

screenshot

下载ManyClip扩展crx文件

下载ManyClip扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
官方URL https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
简介 A stack based copy/paste extension for Chrome.
文件大小 42.25 KB
安装次数 245
当前版本 0.2.0
更新时间 2017-07-29
上架时间 2017-07-29
评分 2.00/5 共1次评分
开发者 John Wiegert
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/bigcakes/ManyClip
帮助页面URL https://github.com/bigcakes/ManyClip
支持的语言 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"
    ]
}