Scribbl: AI Meeting Notes for Google Meet

Scribbl: AI Meeting Notes for Google Meet

Scribbl can record, transcribe, and generate incredibly accurate ChatGPT AI meeting summaries for Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "13.4",
  "permissions": [
    "identity",
    "storage",
    "unlimitedStorage",
    "https://scribbl-enhanced-recordings-prd.s3.us-east-2.amazonaws.com/*/",
    "cookies",
    "https://extension.app.scribbl.co/",
    "https://backend.scribbl.co/"
  ],
  "optional_permissions": [
    "tabCapture"
  ],
  "oauth2": {
    "client_id": "522707397645-5g8ioeo87sb5ikjseh0e252b1tbn15t4.apps.googleusercontent.com",
    "scopes": [
      "profile email",
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "background": {
    "scripts": [
      "background.js",
      "sentry.js",
      "js/amplitude.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/bootstrap.bundle.min.js",
        "js/all.js"
      ],
      "css": [
        "css/bootstrap.min.css",
        "output.css"
      ]
    },
    {
      "matches": [
        "https://meet.google.com/*",
        "https://extension.scribbl.co/*"
      ],
      "js": [
        "content.js",
        "js/amplitude.js",
        "sentry.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://meet.google.com/*",
      "https://extension.scribbl.co/*",
      "*://*/*"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Scribbl Call Recording & Transcription",
    "default_icon": {
      "16": "images/icon-16x16.png",
      "32": "images/icon-32x32.png",
      "48": "images/icon-48x48.png",
      "128": "images/icon-128x128.png"
    }
  },
  "icons": {
    "16": "images/icon-16x16.png",
    "32": "images/icon-32x32.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "manifest_version": 2,
  "commands": {
    "record_option": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Start Recording Option 1"
    },
    "record_option_2": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Start Recording Option 2"
    },
    "record_option_3": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "description": "Start Recording Option 3"
    }
  },
  "web_accessible_resources": [
    "images/drag_dots.svg",
    "images/move_to_dock_icon.svg",
    "images/record_icon.svg",
    "images/logo-red-bkg.png",
    "images/logo-full-red-bkg.png",
    "images/Equalizer-1s-200px.gif"
  ]
}