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
Eメール [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\/*"
    ]
}