BatchGPT

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

Wat is BatchGPT?

BatchGPT is een Chrome-extensie ontwikkeld door PenguinDev, en de belangrijkste functie is "Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie BatchGPT

Download BatchGPT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 ☕️                    

Basisinformatie over de Extensie

Naam BatchGPT BatchGPT
ID ajaihodpeieomeoobihkbpnbgblbfclj
Officiële URL https://chromewebstore.google.com/detail/batchgpt/ajaihodpeieomeoobihkbpnbgblbfclj
Beschrijving Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!
Bestandsgrootte 464 KB
Aantal Installaties 45
Huidige Versie 2.2
Laatst Bijgewerkt 2023-07-05
Publicatiedatum 2023-06-21
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar PenguinDev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}