BatchGPT

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

Qu'est-ce que BatchGPT ?

BatchGPT est une extension Chrome développée par PenguinDev, et sa fonction principale est "Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension BatchGPT

Téléchargez les fichiers d'extension BatchGPT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom BatchGPT BatchGPT
ID ajaihodpeieomeoobihkbpnbgblbfclj
URL Officiel https://chromewebstore.google.com/detail/batchgpt/ajaihodpeieomeoobihkbpnbgblbfclj
Description Automate your workflow using BatchGPT to run multiple prompts concurrently and download ChatGPT's responses in CSV or JSON format!
Taille du Fichier 464 KB
Nombre d'Installations 45
Version Actuelle 2.2
Dernière Mise à Jour 2023-07-05
Date de Publication 2023-06-21
Évaluation 2.33/5 Total 3 Évaluations
Développeur PenguinDev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}