ScrAIbe

ScrAIbe

A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ScrAIbe",
  "description": "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT",
  "version": "0.0.1",
  "permissions": [
    "storage",
    "https://api.openai.com/v1/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_title": "ScrAIbe - OpenAI API Key",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}