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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}