ManyClip

A stack based copy/paste extension for Chrome.

ManyClipคืออะไร?

ManyClip เป็นส่วนขยายของ Chrome ที่พัฒนาโดย John Wiegert และคุณลักษณะหลักของมันคือ "A stack based copy/paste extension for Chrome."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ManyClip

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}