ChatGPT Assistant - GPT Search

ChatGPT Assistant - GPT Search

Enhanced OpenAI ChatGPT directly Google search response. Get access to ChatGPT on any website. Chat GPT everywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.0.7",
  "manifest_version": 2,
  "icons": {
    "128": "assets/icons/logo.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "scripts/bg.js"
    ]
  },
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "assets/css/content.css"
      ]
    }
  ]
}