HD Camera Feed in Video Calls

HD Camera Feed in Video Calls

Try to enforce HD (16:9) camera aspect ratio for web-video calls

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HD Camera Feed in Video Calls",
  "author": "Kyle Simpson",
  "version": "1",
  "description": "Try to enforce HD (16:9) camera aspect ratio for web-video calls",
  "icons": {
    "16": "images/logo-16.png",
    "24": "images/logo-24.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "96": "images/logo-96.png",
    "128": "images/logo-128.png"
  },
  "options_ui": {
    "page": "settings.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "js/external/webextension-polyfill.min.js",
      "js/controller.js"
    ],
    "persistent": false
  },
  "content_scripts": [],
  "web_accessible_resources": [
    "js/patch-gum.js"
  ],
  "permissions": [
    "https://*/*",
    "storage",
    "tabs"
  ]
}