Paste To VM

Paste to virtual machine on HTML console

What is Paste To VM?

Paste To VM is a Chrome extension developed by mengji, and its main feature is "Paste to virtual machine on HTML console".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Paste To VM Extension CRX File

Download Paste To VM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Paste To VM Paste To VM
ID aagnhjfkbjmfhgojleohmamjbojhciac
Official URL https://chromewebstore.google.com/detail/paste-to-vm/aagnhjfkbjmfhgojleohmamjbojhciac
Description Paste to virtual machine on HTML console
File Size 87.53 KB
Installation Count 1,107
Current Version 1.1.1
Last Updated 2020-01-16
Publish Date 2020-01-15
Rating 4.40/5 Total 5 Ratings
Developer mengji
Payment Type free
Supported Languages 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"
    ]
}