Paste To VM
Paste to virtual machine on HTML console
Wat is Paste To VM?
Paste To VM is een Chrome-extensie ontwikkeld door mengji, en de belangrijkste functie is "Paste to virtual machine on HTML console".
Extensie Screenshots
Download het CRX-bestand van de extensie Paste To VM
Download Paste To VM-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Paste To VM |
ID | aagnhjfkbjmfhgojleohmamjbojhciac |
Officiële URL | https://chromewebstore.google.com/detail/paste-to-vm/aagnhjfkbjmfhgojleohmamjbojhciac |
Beschrijving | Paste to virtual machine on HTML console |
Bestandsgrootte | 87.53 KB |
Aantal Installaties | 1,107 |
Huidige Versie | 1.1.1 |
Laatst Bijgewerkt | 2020-01-16 |
Publicatiedatum | 2020-01-15 |
Beoordeling | 4.40/5 Totaal 5 Beoordelingen |
Ontwikkelaar | mengji |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |