Wave - Reactions for Google Meet

Wave - Reactions for Google Meet

Wave is a Firefox/Chrome compatible alternative to the Nod extension for Google meet, which is currently Chrome-only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Wave",
  "version": "0.4",
  "description": "Wave is a Firefox/Chrome compatible alternative to the Nod extension for Google meet, which is currently Chrome-only.",
  "icons": {
    "16": "Icon-16.png",
    "48": "Icon-48.png",
    "128": "Icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/**-**-**"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "wave.js"
  ]
}