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
官方網址 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"
    ]
}