AI Document (GPT Support)

AI Document (GPT Support)

Add a menu to consult ChatGPT on screens such as Mail and Drive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "1.0.3",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "data/icons/icon16.png",
    "48": "data/icons/icon48.png",
    "128": "data/icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "identity",
    "identity.email",
    "scripting"
  ],
  "action": {},
  "background": {
    "service_worker": "background.js"
  }
}