Fellow

Fellow

Bring Fellow into Google Meet and Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "2.6.2",
  "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": [
    "images/*.svg",
    "scripts/*.js"
  ],
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "cookies",
    "storage",
    "https://*.fellow.app/*",
    "https://*.fellow.co/*"
  ],
  "browser_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": {
    "page": "background.html",
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{80937ecd-75e5-4e2c-8ed2-2c011f53c452}"
    }
  }
}