Noty: Summaries, To-Dos, & Transcriptions

Noty: Summaries, To-Dos, & Transcriptions

Noty Workplace AI productivity assistant. Meeting AI summaries, transcriptions, follow-ups and meeting notes. Tasks for Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.57.1",
  "action": {
    "default_popup": "dist/popup/index.html",
    "default_title": "Manage Noty.ai options",
    "default_icon": {
      "512": "assets/logo-512.png"
    }
  },
  "background": {
    "service_worker": "dist/background/background.js"
  },
  "host_permissions": [
    "*://meet.google.com/*"
  ],
  "icons": {
    "16": "assets/logo-512.png",
    "48": "assets/logo-512.png",
    "128": "assets/logo-512.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; base-uri 'self'; form-action 'self'; frame-ancestors 'self';"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*",
        "*://*.zoom.us/*"
      ],
      "js": [
        "dist/contentScripts/rtc.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://meet.google.com/*",
        "*://*.zoom.us/*"
      ],
      "js": [
        "dist/contentScripts/gmeet.js"
      ],
      "css": [
        "dist/contentScripts/style.css"
      ]
    },
    {
      "matches": [
        "*://app.noty.ai/*",
        "*://supa.noty.ai/*",
        "*://api.noty.ai/*",
        "*://noty.ai/*"
      ],
      "js": [
        "dist/contentScripts/webapp.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.noty.ai/*",
      "https://supa.noty.ai/*",
      "https://api.noty.ai/*",
      "https://*.amplitude.com/*",
      "https://noty.ai/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dynamic/rtc/index.js",
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ]
}