Ghostwrite: ChatGPT Email Assistant

Ghostwrite: ChatGPT Email Assistant

A ChatGPT powered AI email writing assistant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ghostwrite: ChatGPT Email Assistant",
  "short_name": "ghostwrite",
  "version": "0.0.0.17",
  "author": "Lydian AI <[email protected]>",
  "description": "A ChatGPT powered AI email writing assistant.",
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*",
        "*://outlook.live.com/*"
      ],
      "js": [
        "dist/extensionInjector.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/gmailJS.bundle.js",
        "dist/gwExtension.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://dev.ghostwrite.rip/*",
    "http://dev.ghostwrite.rip/*",
    "https://app.ghostwrite.rip/",
    "https://outlook.live.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://dev.ghostwrite.rip/*",
      "*://app.ghostwrite.rip/*"
    ]
  },
  "permissions": [
    "cookies",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "optional_host_permissions": [
    "https://*/*"
  ],
  "optional_permissions": [
    "scripting"
  ],
  "background": {
    "service_worker": "dist/background.bundle.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "removeHeader",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "options_page": "options.html"
}