B-REEL Meeting Intruders

B-REEL Meeting Intruders

Games to make your meetings more fun

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "B-REEL Meeting Intruders",
  "description": "Games to make your meetings more fun",
  "version": "1.0.0",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/inject.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_title": "Google Meet Custom Game",
    "default_popup": "html/popup.html"
  },
  "web_accessible_resources": [
    "assets/images/*.png",
    "assets/fonts/*.ttf",
    "js/meeting-intruders/meetingintruders.js",
    "js/meeting-intruders/starfield.js",
    "js/index.js"
  ],
  "manifest_version": 2
}