ManyClip

A stack based copy/paste extension for Chrome.

ManyClip là gì?

ManyClip là một tiện ích mở rộng Chrome được phát triển bởi John Wiegert, và tính năng chính của nó là "A stack based copy/paste extension for Chrome.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ManyClip

Tải xuống các tệp mở rộng ManyClip dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
URL Chính Thức https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
Mô tả A stack based copy/paste extension for Chrome.
Kích Thước Tệp 42.25 KB
Số Lần Cài Đặt 245
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2017-07-29
Ngày Phát Hành 2017-07-29
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển John Wiegert
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bigcakes/ManyClip
URL Trang Trợ Giúp https://github.com/bigcakes/ManyClip
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}