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」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |