ScreenVR

ScreenVR

Experience using your desktop on the web, in VR

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ScreenVR",
  "description": "Experience using your desktop on the web, in VR",
  "version": "0.0.1",
  "icons": {
    "16": "screenvr-icon-16x16.png",
    "64": "screenvr-icon-64x64.png"
  },
  "permissions": [
    "desktopCapture",
    "<all_urls>"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "ids": "*",
    "matches": [
      "*://*.jonathanzwhite.github.io/*"
    ]
  },
  "manifest_version": 2,
  "minimum_chrome_version": "38"
}