Quick Copy - most powerful clipboard manager

A superpowered clipboard inside your browser.

Quick Copy - most powerful clipboard managerคืออะไร?

Quick Copy - most powerful clipboard manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ramit Mittal และคุณลักษณะหลักของมันคือ "A superpowered clipboard inside your browser."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quick Copy - most powerful clipboard manager

ดาวน์โหลดไฟล์ส่วนขยาย Quick Copy - most powerful clipboard manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Quick copy allows you to save multiple items on your clipboard and access them using shortcuts. You can label, search, edit, delete previously saved clipboard contents.

Management
Use the popup UI for managing clipboard contents. The popup allows easy editing of existing clipboard items. Click on any of the items to copy it to clipboard.

Quick Slots
Access items by using the popup or paste directly into webpages on most websites. Inside a web page, just select the text you want to copy and use the shortcuts. Configure up to 10 shortcuts for copying and pasting with quick slots.

Recommended shortcuts are:
Alt+Shift+1 ... Alt+Shift+5 for copying into the 5 quick slots
Ctrl+Shift+1 ... Ctrl+Shift+5 for pasting from the 5 quick slots

Note: Shortcuts need to be enabled from the extensions page before they can be used.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quick Copy - most powerful clipboard manager Quick Copy - most powerful clipboard manager
ID koedeplaimlocjhkpcjnfpfpmmaheacf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-copy-most-powerful/koedeplaimlocjhkpcjnfpfpmmaheacf
คำอธิบาย A superpowered clipboard inside your browser.
ขนาดไฟล์ 198 KB
จำนวนการติดตั้ง 4,356
เวอร์ชันปัจจุบัน 2.3.0
อัปเดตครั้งล่าสุด 2023-09-30
วันที่เผยแพร่ 2020-08-03
คะแนน 4.42/5 รวมทั้งหมด 31 คะแนน
ผู้พัฒนา Ramit Mittal
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ramitmittal/quick-copy
URL หน้าช่วยเหลือ https://github.com/ramitmittal/quick-copy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quick Copy - most powerful clipboard manager",
    "description": "A superpowered clipboard inside your browser.",
    "version": "2.3.0",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage",
        "clipboardRead"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/main.js"
            ]
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_title": "Quick Copy",
        "default_popup": "browser_action\/index.html"
    },
    "background": {
        "page": "background\/index.html"
    },
    "commands": {
        "copy-1": {
            "suggested_key": {
                "default": "Alt+Shift+1"
            },
            "description": "Copy text into slot 1"
        },
        "copy-2": {
            "suggested_key": {
                "default": "Alt+Shift+2"
            },
            "description": "Copy text into slot 2"
        },
        "copy-3": {
            "description": "Copy text into slot 3"
        },
        "copy-4": {
            "description": "Copy text into slot 4"
        },
        "copy-5": {
            "description": "Copy text into slot 5"
        },
        "paste-1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Paste text from slot 1"
        },
        "paste-2": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Paste text from slot 2"
        },
        "paste-3": {
            "description": "Paste text from slot 3"
        },
        "paste-4": {
            "description": "Paste text from slot 4"
        },
        "paste-5": {
            "description": "Paste text from slot 5"
        }
    }
}