Spinach.io - Daily standup that runs itself

Spinach.io - Daily standup that runs itself

Run faster, more-effective daily standup directly in Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spinach.io - Daily standup that runs itself",
  "manifest_version": 3,
  "version": "0.1.8",
  "description": "Run faster, more-effective daily standup directly in Google Meet",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "declarativeNetRequestWithHostAccess",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon_for_google_meet.svg"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://meet.google.com/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {},
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}