Hybryd

Hybryd

Better meetings without disrupting your workflow

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hybryd",
  "version": "1.2.0.7",
  "description": "Better meetings without disrupting your workflow",
  "manifest_version": 3,
  "icons": {
    "16": "icons/hybryd_16x16.png",
    "32": "icons/hybryd_32x32.png",
    "48": "icons/hybryd_48x48.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/hybryd_16x16.png",
      "32": "icons/hybryd_32x32.png",
      "48": "icons/hybryd_48x48.png"
    },
    "default_popup": "pages/popup.html"
  },
  "externally_connectable": {
    "matches": [
      "http://meet.google.com/*",
      "https://meet.google.com/*"
    ],
    "accepts_tls_channel_id": false
  },
  "host_permissions": [
    "https://meet.google.com/*",
    "https://calendar.google.com/*",
    "https://www.googleapis.com/*",
    "https://api.production.hybryd.com/*"
  ],
  "permissions": [
    "storage",
    "identity",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "lib/css/sidePanel.css"
      ],
      "js": [
        "vendor/js/jquery-3.5.1.min.js",
        "lib/js/storage.js",
        "constantMessage.js",
        "contentScript/virtualCamera.js",
        "JSElements.js",
        "contentScript/contentScriptMeet.js"
      ]
    },
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false,
      "css": [
        "lib/css/sidePanel.css"
      ],
      "js": [
        "vendor/js/jquery-3.5.1.min.js",
        "vendor/js/moment.min.js",
        "vendor/js/analytics.js",
        "lib/js/storage.js",
        "constantMessage.js",
        "JSElements.js",
        "contentScript/contentScriptCalendar.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/lib/js/*.js"
      ]
    },
    {
      "matches": [
        "https://meet.google.com/*",
        "https://calendar.google.com/*"
      ],
      "resources": [
        "/pages/*",
        "/icons/*",
        "/lib/assets/*",
        "/vendor/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "10917443518-8tmh8m7a67nvomdduqbarsngv31rlqkr.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "content_security_policy": {}
}