ChatGPT Friend

ChatGPT Friend

ChatGPT powered Google search! Now you can get ChatGPT's intelligent and informative responses directly on any website.

Merlin
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": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "css": [
        "./static/css/content.css"
      ],
      "all_frames": false
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://chat.openai.com/chat"
      ],
      "js": [
        "./static/js/contentFromGPT.js"
      ],
      "css": [
        "./styles/gptc.css"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "64": "icons/64.png",
      "128": "icons/128.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "alarms",
    "storage",
    "webRequest"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "1.0.2"
}