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文件
下载ChatGPT answers for WhatsApp™ web扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |