VBot搜索:ChatGPT搜索助理(V起来®)

VBot搜索:ChatGPT搜索助理(V起来®)

A browser extension to display ChatGPT response inside Google (and other search engines) results.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VBot搜索:ChatGPT搜索助理(V起来®)",
  "version": "2.0.5",
  "description": "A browser extension to display ChatGPT response inside Google (and other search engines) results.",
  "icons": {
    "16": "img/icon-c.png",
    "48": "img/icon-c.png",
    "128": "img/icon-c.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/icon-c.png",
    "default_popup": "popup.html",
    "default_title": ""
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/fingerprint2.min.js",
        "js/jquery-1.8.3.min.js",
        "layer/layer.js",
        "js/content-script.js"
      ],
      "css": [
        "css/content-custom.css",
        "layer/theme/default/layer.css"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "homepage_url": "https://chat.5yoo.com",
  "default_locale": "zh_CN"
}