Minutes: Notes, Transcripts & Summary

Minutes: Notes, Transcripts & Summary

Automated note taking and transcribing tool for all virtual meetings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Minutes: Notes, Transcripts & Summary",
  "description": "Automated note taking and transcribing tool for all virtual meetings",
  "version": "1.15",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "assets/logo16.png",
    "32": "assets/logo32.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png"
  },
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js",
        "widget.js",
        "tiptap.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "authHandler.js"
      ]
    }
  ],
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "bg.html",
        "widgetScript.js",
        "widgetStyle.css",
        "tiptap.js",
        "assets/*",
        "popupContent.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAha6rs+9+nwW92cA5WaTdc7qVOrG0gUesX4GbP2Goeo/JeDU+WyaTffQW6C+S7Di3cWL20xtJgoS6kPudfA77D5J8cefgVh5J7URE5EA+PysLugrad8fHCQXYb6I222S1YvFEWomxiGcMLv7yHco074vjloqVmA1iGtrTDdzQR71U2rD08cwruSa5q3rLWqwQDsjbnG8yr/U7Z/DEmhdaRVhy8x0Y8wb0IJKguNSLyYO+RJaaa5IEe0NHNk2BRp8mnDMwHz+b5hCjQ0RtBtVe/5H8Nvl6hPwGBNwxmOfGmqFhDrpJqbZRcLn5RMdJW/GzBNGmNJnRx3fIbe1dFZJYgwIDAQAB"
}