Search Engine 2.0 | Display ChatGPT with AI Images

Search Engine 2.0 | Display ChatGPT with AI Images

Display AI-generated responses with Google search results and generate your AI-generated images on Google Images. Setup Tutorial : https://youtu.be/YfShjjcQFHQ

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Search Engine 2.0",
  "description": "Display AI generated answer with google search results and AI generated photos with google image search results",
  "version": "1.1.1",
  "manifest_version": 2,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "permissions": [
    "storage",
    "https://*.openai.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options1.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search*"
      ],
      "js": [
        "content-script.js",
        "content_script1.js"
      ],
      "css": [
        "content-script.css",
        "content_script1.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{eb49f7a4-0c4a-4c5b-ba79-024e6c122300}"
    }
  }
}