Story Point Estimations for Google Meet

Story Point Estimations for Google Meet

Quick story point estimation for team members

Merlin
Additional files are visible only to premium users

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/**-**-**"
    ]
  }
}