ChatGPT answers for WhatsApp™ web

ChatGPT answer-suggestions for WhatsApp™ web

ChatGPT answers for WhatsApp™ webคืออะไร?

ChatGPT answers for WhatsApp™ web เป็นส่วนขยายของ Chrome ที่พัฒนาโดย devdamsy และคุณลักษณะหลักของมันคือ "ChatGPT answer-suggestions for WhatsApp™ web"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT answers for WhatsApp™ web

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ChatGPT answers for WhatsApp™ web 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"
            ]
        }
    ]
}