BulkGPT - bulk prompts for ChatGPT

Run hundreds of prompts through ChatGPT and export answers as CSV or Excel.

什么是BulkGPT - bulk prompts for ChatGPT?

BulkGPT - bulk prompts for ChatGPT是由LessonMonkey开发的Chrome扩展程序,该扩展的主要功能是“Run hundreds of prompts through ChatGPT and export answers as CSV or Excel.”。

扩展截图

screenshot
screenshot
screenshot

下载BulkGPT - bulk prompts for ChatGPT扩展crx文件

下载BulkGPT - bulk prompts for ChatGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Introducing BulkGPT, a chrome extension that allows you to easily generate responses from ChatGPT for multiple prompts at once. 
With BulkGPT, you can copy and paste hundreds of prompts, one line per prompt, into the extension. Then, with a single click of a button, you can send those prompts to ChatGPT one at a time and receive the responses back in real time. 
Once all the prompts have been processed, you have the option to export the result table as a csv file or excel file for easy viewing and analysis. 
With BulkGPT, generating responses from ChatGPT for multiple prompts has never been easier!                    

扩展基本信息

名称 BulkGPT - bulk prompts for ChatGPT BulkGPT - bulk prompts for ChatGPT
ID emamaaonhmidkfldhlmpfgmdgjgonhmg
官方URL https://chromewebstore.google.com/detail/bulkgpt-bulk-prompts-for/emamaaonhmidkfldhlmpfgmdgjgonhmg
简介 Run hundreds of prompts through ChatGPT and export answers as CSV or Excel.
文件大小 1014 KB
安装次数 2,004
当前版本 0.0.8
更新时间 2023-06-14
上架时间 2023-01-21
评分 3.86/5 共14次评分
开发者 LessonMonkey
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BulkGPT - bulk prompts for ChatGPT",
    "description": "Run hundreds of prompts through ChatGPT and export answers as CSV or Excel.",
    "version": "0.0.8",
    "action": {
        "default_icon": "bulkgpt_128_128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "bulkgpt_16_16.png",
        "32": "bulkgpt_32_32.png",
        "48": "bulkgpt_48_48.png",
        "128": "bulkgpt_128_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.example.com\/",
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        "http:\/\/*.example.com\/",
        "https:\/\/chat.openai.com\/*"
    ]
}