ChatGPT for Google

ChatGPT for Google

Download ChatGPT for Google extension to enhance search results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appTitle__",
  "version": "1.2.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "action": {
    "default_title": "ChatGPT for Chrome™",
    "default_icon": {
      "32": "icon32.png",
      "64": "icon64.png",
      "128": "icon128.png"
    }
  },
  "icons": {
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "highlight.min.js",
        "markdown-it.min.js",
        "content.js"
      ],
      "css": [
        "github.css",
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "one.svg",
        "two.svg",
        "icon32.png"
      ]
    }
  ]
}