ChatGPT Everywhere: Gmail, Google & more

ChatGPT Everywhere: Gmail, Google & more

Shows ChatGPT results in Google, Gmail and more. You can also click our icon or in Gmail to get ChatGPT prompt there.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "imgs/icons/icon16.png",
    "32": "imgs/icons/icon32.png",
    "48": "imgs/icons/icon48.png",
    "128": "imgs/icons/icon128.png"
  },
  "version": "3.10.0",
  "manifest_version": 3,
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "dist/content.bundle.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "dist/gmail-content.bundle.js"
      ]
    },
    {
      "matches": [
        "https://chat.openai.com/chat/*"
      ],
      "js": [
        "dist/openai-content.bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "main-service-worker.js"
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/gmail-int-button.png",
        "imgs/loading.svg",
        "imgs/rewrite-icon.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}