Fellow: Meeting Notes, Agendas, and 1-on-1s

Fellow: Meeting Notes, Agendas, and 1-on-1s

Access Fellow agendas and notes in Google Meet and display meeting cost in Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.5.3",
  "name": "Fellow: Meeting Notes, Agendas, and 1-on-1s",
  "homepage_url": "https://fellow.app/auth/login",
  "externally_connectable": {
    "matches": [
      "https://*.fellow.app/*",
      "https://*.fellow.co/*"
    ]
  },
  "description": "Access Fellow agendas and notes in Google Meet and display meeting cost in Google Calendar",
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "exclude_matches": [
        "https://meet.google.com/"
      ],
      "js": [
        "scripts/google/meet.js"
      ],
      "css": [
        "styles/videocall.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "scripts/google/calendar.js"
      ],
      "css": [
        "styles/button.css",
        "styles/sidebar.css",
        "styles/badges.css",
        "styles/meetingCost.css",
        "styles/prompt.css",
        "styles/breaksBetweenMeetings.css",
        "styles/meetingPurpose.css",
        "styles/attendeeMeetingHours.css",
        "styles/meetingRecorder.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.fellow.app/*",
        "https://*.fellow.co/*"
      ],
      "js": [
        "scripts/fellow.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.svg",
        "scripts/*.js"
      ],
      "matches": [
        "https://*.fellow.app/*",
        "https://*.fellow.co/*",
        "https://meet.google.com/*",
        "https://calendar.google.com/*"
      ],
      "extension_ids": [
        "eeclpdfpnjegalkhodajlgdhfhlacbgn",
        "nomeamlnnhgiickcddocjalmlhdfknpo"
      ]
    }
  ],
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "https://*.fellow.app/*",
    "https://*.fellow.co/*"
  ],
  "action": {
    "default_title": "Fellow.app",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}