ChatGPT with Internet

ChatGPT with Internet

Augment your ChatGPT prompts with relevant results from the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.5",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background/bg.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "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",
        "icons/icon48.png",
        "leave_review.png"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "commands": {
    "toggle-web-access": {
      "suggested_key": {
        "default": "Alt+W"
      },
      "description": "__MSG_toggleWebAccess__"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}