G-note: Note taking App

G-note: Note taking App

G-note is an AI-powered note-capturing app that frees you from tedious note taking.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "G-note is an AI-powered note-capturing app that frees you from tedious note taking.",
  "version": "1.8",
  "name": "G-note: Note taking App",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*",
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "action": {
    "default_title": " Gnote",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "oauth2": {
    "client_id": "646198872246-l67n373vpgh8bjucpn1ul73disa82q6c.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "inject.js",
        "pako.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "identity",
    "activeTab",
    "storage",
    "tabs",
    "offscreen"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
    "sandbox": "script-src 'self' 'wasm-unsafe-eval'; sandbox allow-scripts; script-src 'self' 'https://www.googleapis.com'; object-src 'self'"
  },
  "host_permissions": [
    "https://meet.google.com/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  }
}