ChatGPT For Google Search

ChatGPT For Google Search

Your AI Copilot powered by ChatGPT. Get ChatGPT response for your Google search with code highlighting and more options.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT For Google Search",
  "description": "Your AI Copilot powered by ChatGPT. Get ChatGPT response for your Google search with code highlighting and more options.",
  "version": "0.1.6",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/search.js"
      ]
    }
  ]
}