Meeting Agendas, Notes & Goals - Hypercontext

Meeting Agendas, Notes & Goals - Hypercontext

Collaborative agendas, notes, next steps, goals and more with Hypercontext. All within Google Meet and Google Calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Meeting Agendas, Notes & Goals - Hypercontext",
  "description": "Collaborative agendas, notes, next steps, goals and more with Hypercontext. All within Google Meet and Google Calendar.",
  "version": "2.0.3",
  "permissions": [
    "sidePanel",
    "storage"
  ],
  "icons": {
    "128": "assets/icon-app-128.png"
  },
  "action": {
    "default_title": "Hypercontext"
  },
  "side_panel": {
    "default_path": "index.html"
  },
  "host_permissions": [
    "https://*.hypercontext.com/*"
  ],
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hypercontext.com/*"
      ],
      "exclude_matches": [
        "https://app.hypercontext.com/*"
      ],
      "all_frames": true,
      "js": [
        "content-scripts/star-hypercontext-com.js"
      ]
    },
    {
      "world": "MAIN",
      "matches": [
        "https://*.hypercontext.com/*"
      ],
      "exclude_matches": [
        "https://app.hypercontext.com/*"
      ],
      "all_frames": true,
      "js": [
        "content-scripts/star-hypercontext-com[NOT-ISOLATED].js"
      ]
    },
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content-scripts/meet-google-com.js"
      ]
    },
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "content-scripts/calendar-google-com.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content-scripts/emberHeplers.js"
      ],
      "matches": [
        "https://*.hypercontext.com/*"
      ]
    }
  ],
  "manifest_version": 3
}