BatchGPT
Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!
ما هو BatchGPT؟
BatchGPT هو إضافة Chrome تم تطويرها بواسطة PenguinDev، والميزة الرئيسية لها هي "Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة BatchGPT
قم بتنزيل ملفات الامتداد BatchGPT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Introducing BatchGPT 👋 A Chrome extension that simplifies interactions with ChatGPT. With BatchGPT, you can run multiple prompts on after another automatically. The extension intelligently detects and handles token limits, automatically continuing the generation process for seamless and fluent interactions! The extension also allows you to download the prompts and responses in a CSV format (useful for importing into Excel) or JSON format. This allows you to easily process ChatGPT's output from your prompts. BatchGPT is a must-have tool for frequent ChatGPT users, providing enhanced convenience and increased productivity through automation. It transforms your ChatGPT experience into a more efficient one. I hope this extension helps you and please let me know if there any any features you would like or if you have any other feedback ☕️
معلومات أساسية عن التمديد
الاسم | BatchGPT |
ID | ajaihodpeieomeoobihkbpnbgblbfclj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/batchgpt/ajaihodpeieomeoobihkbpnbgblbfclj |
الوصف | Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format! |
حجم الملف | 464 KB |
عدد التثبيتات | 45 |
النسخة الحالية | 2.2 |
آخر تحديث | 2023-07-05 |
تاريخ النشر | 2023-06-21 |
تقييم | 2.33/5 مجموع تقييمات 3 |
المطور | PenguinDev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BatchGPT", "description": "Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!", "version": "2.2", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_icon": "BatchGPTLogo.png" }, "permissions": [ "activeTab", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ] } |