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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } ] } |