ChatGPT-4 for Google & AI Image Generator

ChatGPT-4 for Google & AI Image Generator

ChatGPT for Google, Bing includes AI Image Generator. Chat with ChatGPT when you search🔍 and Generate AI images.🖼️

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "ChatGPT-4 for Google & AI Image Generator",
  "description": "ChatGPT-4 for Google, Bing includes AI Image Generator, helps you save time and be more productive.",
  "version": "1.2.2",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "101.0"
    }
  },
  "commands": {
    "toggle-helper": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "Command+Q"
      },
      "description": "Open Fusion Chat Assistant"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}