Easy Clipboard

Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use.

Easy Clipboardคืออะไร?

Easy Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jason xian & christopher jiang และคุณลักษณะหลักของมันคือ "Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Features include: 
1. Auto copy feature that stores everything you copy directly into Easy Clipboard
2. History stored locally on your browser to be retrieved at any time only by you
3. Search bar in order to efficiently filter through your old copies and text
4. Smart buttons that allow you to copy URL's directly from the search bar to the clipboard

How to Use:

1. Highlight the text you wish to copy.
2. Right click and select "Copy" or press on CTRL+C (Windows) / CMD+C (MAC).
3. Click on the Easy Clipboard extension to view saved text snippets!

Please feel free to contact me if you run into any issues or have any feedback for new features or improvements!

Change-log v2.2.1:

1. Added a helper button for copying URL's directly to the clipboard
2. Moved the "Add to Clipboard" button to be part of the helper buttons
3. Added an "undo" button/text when deleting a single note
4. Minor UI updates and bug fixes

Change-log v2.2.2:
1. Fixed bug where notifications would sometimes timeout too fast

Icon Credits:

Extension Icon made by Smashicons from www.flaticon.com.                    

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

ชื่อ Easy Clipboard Easy Clipboard
ID lkpiolleljimgohflbgekkbeoiajighj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-clipboard/lkpiolleljimgohflbgekkbeoiajighj
คำอธิบาย Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use.
ขนาดไฟล์ 327 KB
จำนวนการติดตั้ง 4,561
เวอร์ชันปัจจุบัน 2.2.2
อัปเดตครั้งล่าสุด 2021-02-15
วันที่เผยแพร่ 2019-09-22
คะแนน 3.73/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา jason xian & christopher jiang
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Clipboard",
    "version": "2.2.2",
    "description": "Easy Clipboard allows you to quickly copy and paste text, urls and more, and store them safely in your browser for future use.",
    "icons": {
        "128": ".\/static\/icon128.png",
        "48": ".\/static\/icon48.png",
        "16": ".\/static\/icon16.png"
    },
    "options_page": ".\/pages\/options.html",
    "browser_action": {
        "default_icon": ".\/static\/icon16.png",
        "default_popup": ".\/pages\/popup.html"
    },
    "background": {
        "scripts": [
            ".\/pages\/background.js"
        ],
        "persistant": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/pages\/contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ]
}