Paste To VM

Paste to virtual machine on HTML console

什么是Paste To VM?

Paste To VM是由mengji开发的Chrome扩展程序,该扩展的主要功能是“Paste to virtual machine on HTML console”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Paste To VM扩展crx文件

下载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"
    ]
}