Suggesty
Get human-like answers powered by GPT-3 to your Google searches
什么是Suggesty?
Suggesty是由Sergey Bunas开发的Chrome扩展程序,该扩展的主要功能是“Get human-like answers powered by GPT-3 to your Google searches”。
扩展截图
下载Suggesty扩展crx文件
下载Suggesty扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With Suggesty extension, there is no need to scroll through all results pages - you can get the answer straight away. How does it work? We send your anonymized Google request to GPT-3 and display its answers on the Google page. What can I do with that? - Grammar correction. Type “fix grammar” to correct your sentence. - Translation. You can easily translate your text into other languages. For example, type “translate to french my name is Nick” - Recipes. Create a cocktail recipe from the ingredients you have. - Any other request. Do you need a movie recommendation? Don’t you know how a refrigerator works? Do you need a step-by-step guide on how to achieve something? Just type that, and GPT-3 will cover you!
扩展基本信息
名称 | Suggesty |
ID | hbiphmiliockggpepniplkkfmnhdihjh |
官方URL | https://chromewebstore.google.com/detail/suggesty/hbiphmiliockggpepniplkkfmnhdihjh |
简介 | Get human-like answers powered by GPT-3 to your Google searches |
文件大小 | 12.36 KB |
安装次数 | 3,351 |
当前版本 | 1.3 |
更新时间 | 2022-11-26 |
上架时间 | 2022-08-24 |
评分 | 4.20/5 共20次评分 |
开发者 | Sergey Bunas |
电子邮箱 | [email protected] |
付费类型 | in_app |
隐私政策页面URL | https://replai.so/privacy_policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Suggesty", "description": "Get human-like answers powered by GPT-3 to your Google searches", "version": "1.3", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.google.com\/search*" ], "js": [ "content-script.js" ], "run_at": "document_start" } ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ] } |