Paste To VM

Paste to virtual machine on HTML console

Paste To VMคืออะไร?

Paste To VM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mengji และคุณลักษณะหลักของมันคือ "Paste to virtual machine on HTML console"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        A plugin to support paste text from local clipboard to a virtual machine managed by vCenter on web console. 

Use ctrl+shift+v(Windows) and command+shift+v(Mac) to paste.                    

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

ชื่อ Paste To VM Paste To VM
ID aagnhjfkbjmfhgojleohmamjbojhciac
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/paste-to-vm/aagnhjfkbjmfhgojleohmamjbojhciac
คำอธิบาย Paste to virtual machine on HTML console
ขนาดไฟล์ 87.53 KB
จำนวนการติดตั้ง 1,107
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2020-01-16
วันที่เผยแพร่ 2020-01-15
คะแนน 4.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา mengji
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Paste To VM",
    "version": "1.1.1",
    "description": "Paste to virtual machine on HTML console",
    "manifest_version": 2,
    "commands": {
        "paste": {
            "suggested_key": {
                "default": "Ctrl+Shift+V",
                "mac": "Command+Shift+V"
            },
            "description": "Paste keypress listener"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/ui\/webconsole.html*",
                "https:\/\/*\/ui\/webconsole.html*"
            ]
        }
    ],
    "permissions": [
        "clipboardRead",
        "activeTab"
    ],
    "web_accessible_resources": [
        "pasteToVM.js"
    ]
}