hns-online-extension

hns-online-extension

Allows clipboard sharing between an hns-online virtual machine and the user's computer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "hns-online-extension",
  "version": "0.0.2",
  "manifest_version": 2,
  "author": "diateam",
  "description": "Allows clipboard sharing between an hns-online virtual machine and the user's computer",
  "browser_action": {
    "default_title": "hns-online extension",
    "default_popup": "clipboard.html",
    "default_icon": {
      "16": "16HNS_Online.png",
      "48": "48HNS_Online.png",
      "128": "128HNS_Online.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hns-platform.com/*",
        "http://localhost/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "tabs",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}