Google Meet Mirror / Flip Camera

Google Meet Mirror / Flip Camera

Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Meet Mirror / Flip Camera",
  "description": "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.",
  "version": "1.0.2",
  "author": "Julien Paille",
  "icons": {
    "24": "icon24.png",
    "36": "icon36.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "24": "icon24.png",
      "36": "icon36.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Google Meet Mirror : Flip camera to match what others see"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "init_flip.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "declarativeContent"
  ]
}