Acer VR Utility for WebVR (experimental)

Acer VR Utility for WebVR (experimental)

With your Acer Windows Mixed Reality Headset, you can experience VR in Chrome browser just by clicking a link.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Acer VR Utility for WebVR (experimental)",
  "version": "1.1.1005",
  "manifest_version": 2,
  "description": "With your Acer Windows Mixed Reality Headset, you can experience VR in Chrome browser just by clicking a link.",
  "icons": {
    "128": "webvr_extension128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "webvr_extension16.png",
      "24": "webvr_extension24.png"
    },
    "default_title": "Acer VR Utility for WebVR (experimental)",
    "default_popup": "main.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "nativeMessaging",
    "activeTab",
    "storage",
    "<all_urls>",
    "contextMenus",
    "tabs"
  ],
  "web_accessible_resources": [
    "polyfill.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}