GPT3-slack
GPT-3 for slack web
什么是GPT3-slack?
GPT3-slack是由anchen开发的Chrome扩展程序,该扩展的主要功能是“GPT-3 for slack web”。
扩展截图
下载GPT3-slack扩展crx文件
下载GPT3-slack扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
There is an extension for Slack web to check the grammar of your messages. 1.Get your API key from OpenAI's website: https://openai.com/api/ 2.Click on the extension icon. 3.Paste your key and save. 4.Open Slack in your browser. In the input box, the trencher cap icon is for correcting grammar and the light bulb Icon is for text generation. 5. Enjoy! Updated: - We are now utilizing the chatGPT model from OpenAI in order to reduce costs. - There has been an update to the OpenAI policy, and as a result, data cannot be used for model training. For more information on this policy change, please refer to https://platform.openai.com/docs/guides/chat/do-you-store-the-data-that-is-passed-into-the-api.
扩展基本信息
名称 | GPT3-slack |
ID | liiikponmocoggainemclbgbjnpheifd |
官方URL | https://chromewebstore.google.com/detail/gpt3-slack/liiikponmocoggainemclbgbjnpheifd |
简介 | GPT-3 for slack web |
文件大小 | 207 KB |
安装次数 | 43 |
当前版本 | 1.2.1 |
更新时间 | 2023-03-13 |
上架时间 | 2022-12-01 |
开发者 | anchen |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GPT3-slack", "description": "GPT-3 for slack web", "version": "1.2.1", "manifest_version": 3, "icons": { "128": "images\/logo-128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.slack.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "images\/correct.png", "images\/generate.png" ], "matches": [ "*:\/\/*.slack.com\/*" ] } ] } |