ChatGPT 4 for Google - ChatGPT Everywhere

ChatGPT 4 for Google - ChatGPT Everywhere

ChatGPT 4 for all Search Engines and AI Image Generator

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT 4 for Google - ChatGPT Everywhere",
  "description": "ChatGPT 4 for all Search Engines and AI Image Generator",
  "version": "1.3.4",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "toggle-helper": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "Command+Q"
      },
      "description": "Open Fusion Chat Assistant"
    }
  },
  "externally_connectable": {
    "matches": [
      "https://*.fusionchat.ai/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ]
}