BatchGPT

Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!

什麼是BatchGPT?

BatchGPT是由PenguinDev開發的Chrome擴展程式,該擴展的主要功能是“Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!”。

擴展截圖

screenshot
screenshot

下載BatchGPT擴展crx文件

下載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 BatchGPT
ID ajaihodpeieomeoobihkbpnbgblbfclj
官方網址 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"
            ]
        }
    ]
}