BestRegards - AI reply generator

BestRegards - AI reply generator

Use the AI to reply your e-mails and messages. Extend the Gmail UI or use the popup anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BestRegards - AI reply generator",
  "description": "Use the AI to reply your e-mails and messages. Extend the Gmail UI or use the popup anywhere.",
  "version": "0.0.11",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "clipboardWrite",
    "storage",
    "contextMenus",
    "action",
    "scripting",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "gmail/extensionInjector.js",
        "gmail/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "background.js",
        "gmail/gmailJsLoader.js",
        "gmail/extension.js",
        "gmail/gmailJsLoader.js.map",
        "gmail/extension.js.map",
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*/*"
  ]
}