Clipboard

Store copy items to Clipboard to be retrieved at a lather point

Clipboardคืออะไร?

Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://massinflux.com และคุณลักษณะหลักของมันคือ "Store copy items to Clipboard to be retrieved at a lather point"

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

screenshot

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

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

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

                        Store copy items to Clipboard to be retrieved at a lather point

To use, make a selection and copy it like you would usually do.
Upon right click, you will notice a new menu item called "Clipboard" here the recent copied items will be stored.

The menu is split into two "virtual" sections. The Primary area is used for most used copy selections. This menu needs to be created manually from the extension popup
Click on a sub menu button to copy the selected text to clipboard then click on the "Paste" button to use the selected text.

The recent copies can also be found by clicking on the top menu "Clipboard" icon, where they can be removed and moved around between Primary and Secondary menus

v 1.0.1
 -- improved popup options

v 1.0.2
 -- bug fixes

v 1.0.0
 -- initial release

I made this extension for my own needs, there will be bugs                    

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

ชื่อ Clipboard Clipboard
ID fkbcnppplppaciohjpfecaaoodkimhli
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/clipboard/fkbcnppplppaciohjpfecaaoodkimhli
คำอธิบาย Store copy items to Clipboard to be retrieved at a lather point
ขนาดไฟล์ 116 KB
จำนวนการติดตั้ง 7,000
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2019-09-21
วันที่เผยแพร่ 2019-09-21
คะแนน 4.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา http://massinflux.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://massinfluix.com
URL หน้านโยบายความเป็นส่วนตัว http://massinflux.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clipboard",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Store copy items to Clipboard to be retrieved at a lather point",
    "homepage_url": "https:\/\/massinflux.com",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/inject\/jquery.min.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Clipboard",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "clipboardRead",
        "clipboardWrite",
        "http:\/\/*\/*, https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}