GPT3-slack
GPT-3 for slack web
GPT3-slackคืออะไร?
GPT3-slack เป็นส่วนขยายของ Chrome ที่พัฒนาโดย anchen และคุณลักษณะหลักของมันคือ "GPT-3 for slack web"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT3-slack
ดาวน์โหลดไฟล์ส่วนขยาย 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\/*" ] } ] } |