ChitChat - Search with ChatGPT

ChitChat - Search with ChatGPT

Display ChatGPT responses with search results. Works on Google, Bing, etc. Supports GPT-4 and Summary feature.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "__MSG_appName__",
  "background": {
    "service_worker": "js/sevice_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "./js/content.js"
      ],
      "css": [
        "./css/content.css"
      ],
      "all_frames": false
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://chat.openai.com/"
      ],
      "js": [
        "./js/gptContent.js"
      ],
      "css": [
        "./css/gptc.css"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/icon.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icons/icon.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "1.0.5"
}