BatchGPT

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

Cos'è BatchGPT?

BatchGPT è un'estensione di Chrome sviluppata da PenguinDev, e la sua funzione principale è "Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione BatchGPT

Scarica i file di estensione BatchGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome BatchGPT BatchGPT
ID ajaihodpeieomeoobihkbpnbgblbfclj
URL Ufficiale https://chromewebstore.google.com/detail/batchgpt/ajaihodpeieomeoobihkbpnbgblbfclj
Descrizione Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!
Dimensione del File 464 KB
Conteggio Installazioni 45
Versione Corrente 2.2
Ultimo Aggiornamento 2023-07-05
Data di Pubblicazione 2023-06-21
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore PenguinDev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}