Wordle for Google Meet

Wordle for Google Meet

Play Wordle while using Google Meet without navigating to another tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName_iframe_meet__",
  "default_locale": "en",
  "version": "1.0",
  "description": "__MSG_extDescription_iframe_meet__",
  "content_scripts": [
    {
      "run_at": "document_end",
      "css": [
        "css/styles.css"
      ],
      "matches": [
        "*://meet.google.com/*",
        "*://hangouts.google.com/*"
      ],
      "js": [
        "js/vendor.js",
        "js/iframe_meet_content_script.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://meet.google.com/*",
      "*://hangouts.google.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "icons/iframe_meet/icon16.png",
      "32": "icons/iframe_meet/icon32.png",
      "48": "icons/iframe_meet/icon48.png",
      "128": "icons/iframe_meet/icon128.png"
    }
  },
  "icons": {
    "16": "icons/iframe_meet/icon16.png",
    "32": "icons/iframe_meet/icon32.png",
    "48": "icons/iframe_meet/icon48.png",
    "128": "icons/iframe_meet/icon128.png"
  },
  "manifest_version": 3
}