GPT3-slack
GPT-3 for slack web
GPT3-slack란 무엇입니까?
GPT3-slack은(는) anchen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GPT-3 for slack web"입니다.
확장 프로그램 스크린샷
GPT3-slack 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |