ChatGPT answers for WhatsApp™ web
ChatGPT answer-suggestions for WhatsApp™ web
ChatGPT answers for WhatsApp™ web란 무엇입니까?
ChatGPT answers for WhatsApp™ web은(는) devdamsy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT answer-suggestions for WhatsApp™ web"입니다.
확장 프로그램 스크린샷
ChatGPT answers for WhatsApp™ web 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Send the last 8 chat messages to Chat Gpt and displays the answer-suggestion for you in a field on whatsapp web. You can decide to use it or not.
확장 프로그램 기본 정보
이름 | ChatGPT answers for WhatsApp™ web |
ID | bmbidjjfpkmlddlbkljbphdgpnjnpogk |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk |
설명 | ChatGPT answer-suggestions for WhatsApp™ web |
파일 크기 | 22.01 KB |
설치 횟수 | 400 |
현재 버전 | 0.0.5 |
최근 업데이트 | 2023-07-21 |
출시 날짜 | 2023-04-01 |
평점 | 4.83/5 총 6 개의 평점 |
개발자 | devdamsy |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://damsoft.nl/gptforwhatsapp/privacypolicy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT answers for WhatsApp\u2122 web", "version": "0.0.5", "description": "ChatGPT answer-suggestions for WhatsApp\u2122 web", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "GPT answers for WhatsApp\u2122 web" }, "options_page": "options\/options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "run_at": "document_idle", "js": [ "parser.js", "uiStuff.js", "confirmDialog.js", "contentScript.js" ] } ] } |