Upbringo - Meet

Upbringo - Meet

This extension will enhance your google meet experience with Upbringo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Upbringo - Meet",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "This extension will enhance your google meet experience with Upbringo",
  "homepage_url": "https://www.upbringo.com",
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_icon": "icons/logo48.png",
    "default_title": "Upbringo - Meet",
    "default_popup": "src/page_action/page_action.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+H",
        "mac": "MacCtrl+Shift+H"
      },
      "description": "Opens PopUp"
    }
  },
  "permissions": [
    "https://meet.google.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/jquery/jquery.min.js",
        "js/constants.js",
        "js/storageAsync.js",
        "src/inject/inject.js"
      ]
    }
  ]
}