whereby.com/appear.in meeting room helper

whereby.com/appear.in meeting room helper

Auto enter whereby.com (previously appear.in) meetings muted and cam off (configurable).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "whereby.com/appear.in meeting room helper",
  "description": "Auto enter whereby.com (previously appear.in) meetings muted and cam off (configurable).",
  "version": "1.2.2",
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "32": "icons/32.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/96.png"
  },
  "browser_action": {
    "default_icon": "icons/19.png",
    "default_popup": "popup/index.html",
    "default_title": "whereby.com (previously appear.in) meeting room helper"
  },
  "content_scripts": [
    {
      "matches": [
        "https://whereby.com/*",
        "https://appear.in/*"
      ],
      "js": [
        "js/vendor.js",
        "js/index.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/index.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ]
}