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
Eメール [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"
    ]
}