Hijinx - Icebreaker Games for Google Meet

Hijinx - Icebreaker Games for Google Meet

Team building activities for your remote workplace

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hijinx - Icebreaker Games for Google Meet",
  "version": "0.2.0",
  "action": {},
  "description": "Team building activities for your remote workplace",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "GQueues",
  "background": {
    "service_worker": "background.min.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "exclude_matches": [
        "https://meet.google.com/getalink*"
      ],
      "run_at": "document_idle",
      "css": [
        "hijinx.min.css"
      ],
      "js": [
        "jquery-3.6.0.js",
        "confetti.browser.js",
        "hijinx.min.js"
      ]
    }
  ],
  "host_permissions": [
    "https://meet.google.com/*"
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "content_security_policy": {},
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "audio/*",
        "fonts/*",
        "fonts.css"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ]
}