AI Search with ChatGPT

AI Search with ChatGPT

AI enhance searching, display ChatGPT response at Bing ,Google and other search engines.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.0.4",
  "manifest_version": 3,
  "icons": {
    "64": "icons/icon.png"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "scripting",
    "alarms",
    "declarativeNetRequest"
  ],
  "background": {
    "service_worker": "javascript/worker.js"
  },
  "action": {
    "default_icon": {
      "32": "icons/icon.png"
    },
    "default_title": "__MSG_name__"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon.png"
      ],
      "matches": [
        "*://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://duckduckgo.com/*",
        "https://www.baidu.com/*",
        "https://www.ask.com/web*",
        "https://*/search*"
      ],
      "js": [
        "javascript/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "javascript/response.js"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}