SearchGPT
Integrate OpenAI's GPT-3 model responses to your Google search queries
什么是SearchGPT?
SearchGPT是由Reuel Joseph开发的Chrome扩展程序,该扩展的主要功能是“Integrate OpenAI's GPT-3 model responses to your Google search queries”。
扩展截图
下载SearchGPT扩展crx文件
下载SearchGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Get summarized results in seconds by using the power of OpenAI's GPT-3 models to enhance Google searches with artificial intelligence. 扩展基本信息
| 名称 | |
| ID | nemhpjoggiokeajmkekkdkapjehpfaff |
| 官方URL | https://chromewebstore.google.com/detail/searchgpt/nemhpjoggiokeajmkekkdkapjehpfaff |
| 简介 | Integrate OpenAI's GPT-3 model responses to your Google search queries |
| 文件大小 | 16.52 KB |
| 安装次数 | 451 |
| 当前版本 | 1.1 |
| 更新时间 | 2023-02-02 |
| 上架时间 | 2023-01-11 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Reuel Joseph |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/RooRoo6080/SearchGPT |
| 帮助页面URL | https://github.com/RooRoo6080/SearchGPT |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "SearchGPT",
"version": "1.1",
"description": "Integrate OpenAI's GPT-3 model responses to your Google search queries",
"author": "Reuel Joseph",
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"js": [
"scripts\/content.js"
],
"matches": [
"https:\/\/www.google.com\/search*"
]
}
],
"background": {
"service_worker": "scripts\/background.js"
},
"action": {
"default_title": "SearchGPT",
"default_popup": "content\/popup.html"
}
} | |