WebChatGPT: ChatGPT with internet access

WebChatGPT: ChatGPT with internet access

Augment your ChatGPT prompts with relevant web search results through web browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_sn__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "4.1.20",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "permissions": [
    "storage",
    "*://*/*",
    "declarativeNetRequestWithHostAccess"
  ],
  "background": {
    "scripts": [
      "background/bg.js"
    ],
    "type": "module"
  },
  "browser_action": {},
  "browser_specific_settings": {
    "gecko": {
      "id": "{b13d04e3-41db-48b3-842c-8079df93c7ad}"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "import_mainUI.js"
      ]
    },
    {
      "matches": [
        "https://app.maxai.me/*"
      ],
      "js": [
        "import_authClient.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import_theSearchItem.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import_searchWithAI.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import_requesterInject.js"
      ]
    }
  ],
  "options_ui": {
    "page": "pages/options/options.html",
    "open_in_tab": true,
    "chrome_style": true
  },
  "web_accessible_resources": [
    "contentScripts/*",
    "chunks/*.js",
    "i18n/locales/*",
    "assets/*",
    "pages/*",
    "mainUI.js",
    "authClient.js",
    "theSearchItem.js",
    "searchWithAI.js",
    "requesterInject.js"
  ],
  "commands": {
    "toggle-web-access": {
      "suggested_key": {
        "default": "Alt+W"
      },
      "description": "__MSG_toggleWebAccess__"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_bing",
        "enabled": true,
        "path": "rules/bing.json"
      }
    ]
  }
}