Clipboard Manager

Easily access to recent clipboards via context-menu or toolbar popup.

Clipboard Managerคืออะไร?

Clipboard Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Muyor และคุณลักษณะหลักของมันคือ "Easily access to recent clipboards via context-menu or toolbar popup."

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

screenshot

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

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

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

                        Clipboard Manager is an extension that let you easily store and view clipboard items via toolbar popup.

You can also access up to 7 clipboard items via mouse right click (context-menu). Please note that, the add-on only stores clipboard items when you want to "paste" them. In other words, when you just copy an item, it is NOT stored to the memory. But, when you paste it to an editable area within a page, it will be stored to the memory. This way, only needed items will be saved to the memory.

In order to access stored clipboard items, please open toolbar popup or right-click on an editable area and then choose clipboard manager in the right-click. Then, click on a desired clipboard item; and it will be inserted to the editable filed.

If you have a feature request, or found a bug to report, please fill the bug report form in the addon's homepage (https://mybrowseraddon.com/clipboard-manager.html).                    

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

ชื่อ Clipboard Manager Clipboard Manager
ID blicpdhhajlodleohohaeommdmpjfoab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clipboard-manager/blicpdhhajlodleohohaeommdmpjfoab
คำอธิบาย Easily access to recent clipboards via context-menu or toolbar popup.
ขนาดไฟล์ 19.01 KB
จำนวนการติดตั้ง 3,854
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2023-07-30
วันที่เผยแพร่ 2018-05-19
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Muyor
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/clipboard-manager.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/clipboard-manager.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.3",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Clipboard Manager",
    "permissions": [
        "storage",
        "notifications",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/clipboard-manager.html",
    "description": "Easily access to recent clipboards via context-menu or toolbar popup.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Clipboard Manager",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}