Web Conferencing for Zoom

Web Conferencing for Zoom

Manage video and web conferencing for Zoom. Webinars, meetings and calls in this compact and mobile looking client.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "5.4",
  "default_locale": "en",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7BWEtDKW0jxXrnTRvOiA2tOL3hsUJSJEF5lqbqy07orSlEaxhdZ/52StAPCvjvAJ6SNaXTr7mbCt3kB3b6gPCMQ1EB/ygvQT+rYrwlEOJKCvuK6PIC4Wjgf+z3qrl75qi2qmJeyUrgAcCXQXINy+mJJoC8U+wiWpV2Zvp16cvtxxuhxtxXG72O1/+orKDbfy3qPE5P4v8DIayhnZGlZtoi9LyhQb+8RLHV57cSezh04FQ2PoW/546me3YQi6Uxb/qOmyi6qOXKnvQ3rhvQ9IREUpJILxu1NA2r2sLX2P4wGZQheojt06E0pfU2VRmUOgYTwF3EnBp+5BCv7BExtm8wIDAQAB",
  "options_page": "options/index.html",
  "action": {
    "default_title": "__MSG_chrome_extension_name__",
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    }
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "system.display",
    "scripting",
    "activeTab",
    "notifications",
    "contextMenus",
    "unlimitedStorage",
    "storage"
  ],
  "host_permissions": [
    "*://*.zoom.us/*",
    "*://*.wwevents.fun/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.zoom.us/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/safeResponse/purify.min.js",
        "js/toastr/toastr.min.js",
        "i18n.js",
        "js/i18n/i18n.js",
        "js/introjs/intro.min.js",
        "js/material-io/material-components-web.min.js",
        "js/jquery-menu/jquery.contextMenu.min.js",
        "js/jquery-menu/jquery.ui.position.min.js",
        "utils.js",
        "myScript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "js/*",
        "options/*",
        "css/*",
        "html/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}