Record, Transcribe & ChatGPT for Google Meet

Record, Transcribe & ChatGPT for Google Meet

Record Google Meet presentations and meetings automatically in top quality

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Record, Transcribe & ChatGPT for Google Meet",
  "description": "Record Google Meet presentations and meetings automatically in top quality",
  "version": "3.8.17.1646",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon.png",
    "128": "images/icon.png"
  },
  "background": {
    "service_worker": "scripts/service-worker.js"
  },
  "action": {
    "browser_style": true,
    "default_icon": "images/icon.png",
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "pages/popup.html"
  },
  "externally_connectable": {
    "matches": [
      "*://tldv.io/*",
      "*://tldv.tech/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/*.map"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "alarms",
    "cookies",
    "scripting"
  ],
  "optional_permissions": [
    "clipboardWrite"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://meet.google.com/*",
        "*://calendar.google.com/*",
        "*://*.notion.so/*",
        "*://docs.google.com/*",
        "*://trello.com/*",
        "*://pipedrive.com/*",
        "*://hubspot.com/*",
        "*://salesforce.com/*",
        "*://*.atlassian.com/*",
        "*://*.atlassian.net/*",
        "*://coda.io/*",
        "*://*.zoom.us/*",
        "*://*.hubspot.com/*",
        "*://*.slack.com/*",
        "*://*.salesforce.com/*",
        "*://*.lightning.force.com/*",
        "*://*.tldv.io/app/embed/*",
        "*://*.pockost.com/app/embed/*"
      ],
      "css": [
        "styles/fonts.css",
        "styles/multi-tabs.css"
      ],
      "js": [
        "scripts/multi-tabs-interface.script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "css": [
        "styles/fonts.css",
        "styles/basic.css"
      ],
      "js": [
        "scripts/service-worker.script.js",
        "scripts/google-meet.script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://calendar.google.com/*"
      ],
      "css": [
        "styles/fonts.css",
        "styles/basic.css"
      ],
      "js": [
        "scripts/google-calendar.script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.notion.so/*",
        "*://docs.google.com/*",
        "*://trello.com/*",
        "*://pipedrive.com/*",
        "*://hubspot.com/*",
        "*://salesforce.com/*",
        "*://*.atlassian.com/*",
        "*://*.atlassian.net/*",
        "*://coda.io/*",
        "*://*.zoom.us/*",
        "*://*.hubspot.com/*",
        "*://*.slack.com/*",
        "*://*.salesforce.com/*",
        "*://*.lightning.force.com/*"
      ],
      "js": [
        "scripts/pip-tabs.script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "pin-highlight": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Period"
      },
      "description": "Create a highlight during a meeting"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}