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."입니다.
확장 프로그램 스크린샷
BulkGPT - bulk prompts for ChatGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | |
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\/*" ] } |