Paste To VM

Paste To VM

Paste to virtual machine on HTML console

Additional files are visible only to premium users

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