Hugo

Hugo

Hugo is a meeting notes platform for fostering a culture that improves meeting performance and cohesion for hybrid work teams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hugo",
  "version": "1.2.1",
  "description": "Hugo is a meeting notes platform for fostering a culture that improves meeting performance and cohesion for hybrid work teams.",
  "homepage_url": "https://www.hugo.team",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "cookies",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "lib/sentry.min.js",
        "googleCalendar.js"
      ]
    }
  ],
  "browser_action": {},
  "externally_connectable": {
    "matches": [
      "*://*.hugo.team/*",
      "*://*.hugoai.com/*"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "app.html"
  },
  "web_accessible_resources": [
    "logo.png",
    "32.png"
  ]
}