Words with Friends for Google Meet

Words with Friends for Google Meet

Play Words with Friends (a Scrabble like game) 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__",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://wordswithfriends.com/*"
  ],
  "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/*"
    ]
  },
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/iframe_meet_background.js"
    ],
    "persistent": true
  },
  "page_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"
  },
  "web_accessible_resources": [
    "assets/*"
  ],
  "manifest_version": 2
}