Examine source code of HoverCam for Chrome

Inspect and view changes in HoverCam for Chrome source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HoverCam for Chrome",
  "short_name": "HoverCam",
  "description": "HoverCam App for Chrome",
  "version": "1.0.18",
  "version_name": "v1.0.18 (04/01/2022)",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background_hovercam.js"
      ]
    }
  },
  "offline_enabled": true,
  "icons": {
    "16": "hovercam_logo_16.png",
    "128": "hovercam_logo_128.png"
  },
  "permissions": [
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "storage",
    "videoCapture",
    "audioCapture",
    "usb",
    "hid",
    {
      "usbDevices": [
        {
          "vendorId": 10388,
          "productId": 34
        },
        {
          "vendorId": 10388,
          "productId": 41
        }
      ]
    },
    "fullscreen",
    "alwaysOnTopWindows",
    "unlimitedStorage",
    "desktopCapture"
  ]
}