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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ChatGPT answers for WhatsApp™ web
قم بتنزيل ملفات الامتداد ChatGPT answers for WhatsApp™ web بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة سياسة الخصوصية | 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" ] } ] } |