BatchGPT
Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!
BatchGPT là gì?
BatchGPT là một tiện ích mở rộng Chrome được phát triển bởi PenguinDev, và tính năng chính của nó là "Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BatchGPT
Tải xuống các tệp mở rộng BatchGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 ☕️
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BatchGPT |
ID | ajaihodpeieomeoobihkbpnbgblbfclj |
URL Chính Thức | https://chromewebstore.google.com/detail/batchgpt/ajaihodpeieomeoobihkbpnbgblbfclj |
Mô tả | Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format! |
Kích Thước Tệp | 464 KB |
Số Lần Cài Đặt | 45 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2023-07-05 |
Ngày Phát Hành | 2023-06-21 |
Đánh Giá | 2.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | PenguinDev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |