What's in a Name? - For Google Meet

What's in a Name? - For Google Meet

Google Meet extension that sets a default nickname for Google Meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "What's in a Name? - For Google Meet",
  "version": "1.0.0",
  "description": "Google Meet extension that sets a default nickname for Google Meet.",
  "page_action": {
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    }
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ]
}