ChatGPT Search Connect with internet access

ChatGPT Search Connect with internet access

Inject relevant search results from the web to your ChatGPT prompts.

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_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.6",
  "icons": {
    "16": "icons/128.png",
    "48": "icons/128.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background/bg.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "inject.js",
        "content-scripts/mainUI.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true,
    "css": [
      "options/options.css"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content-scripts/mainUI.css",
        "content-scripts/mainUI.js",
        "icons/128.png",
        "leave_review.png",
        "fetchIntercept.js",
        "fetchIntercept.js.map",
        "style/progesswindow.css",
        "style/base.css",
        "style/innerStyles.css",
        "*.map"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "commands": {
    "toggle-web-access": {
      "suggested_key": {
        "default": "Alt+W"
      },
      "description": "__MSG_toggleWebAccess__"
    }
  }
}