Story Point Estimations for Google Meet

Quick story point estimation for team members
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Story Point Estimations for Google Meet",
  "version": "1.3.3",
  "description": "Quick story point estimation for team members",
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/**-**-**"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dist/*",
    "img/*",
    "inject.js"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/48.png"
  },
  "externally_connectable": {
    "matches": [
      "*://meet.google.com/**-**-**"
    ]
  }
}