GPT Workspace

GPT Workspace

Run GPT in Google Workspace: use ChatGPT into Google Slides, Docs, Sheets, Drive and Gmail.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GPT Workspace",
  "description": "Run GPT in Google Workspace: use ChatGPT into Google Slides, Docs, Sheets, Drive and Gmail.",
  "version": "2.6",
  "permissions": [
    "activeTab",
    "sidePanel",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.input-2y0mX2yO.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "media": []
    }
  ],
  "options_ui": {
    "page": "src/options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "action": {
    "default_title": "GPT Workspace",
    "default_icon": {
      "16": "src/images/icon16.png",
      "32": "src/images/icon32.png",
      "48": "src/images/icon48.png",
      "128": "src/images/icon128.png"
    }
  },
  "icons": {
    "16": "src/images/icon16.png",
    "32": "src/images/icon32.png",
    "48": "src/images/icon48.png",
    "128": "src/images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "input.js"
      ],
      "use_dynamic_url": true
    }
  ]
}