BulkGPT - bulk prompts for ChatGPT
Run hundreds of prompts through ChatGPT and export answers as CSV or Excel.
¿Qué es BulkGPT - bulk prompts for ChatGPT?
BulkGPT - bulk prompts for ChatGPT es una extensión de Chrome desarrollada por LessonMonkey, y su función principal es "Run hundreds of prompts through ChatGPT and export answers as CSV or Excel.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión BulkGPT - bulk prompts for ChatGPT
Descarga archivos de extensión BulkGPT - bulk prompts for ChatGPT en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | |
ID | emamaaonhmidkfldhlmpfgmdgjgonhmg |
URL Oficial | https://chromewebstore.google.com/detail/bulkgpt-bulk-prompts-for/emamaaonhmidkfldhlmpfgmdgjgonhmg |
Descripción | Run hundreds of prompts through ChatGPT and export answers as CSV or Excel. |
Tamaño del Archivo | 1014 KB |
Cantidad de Instalaciones | 2,004 |
Versión Actual | 0.0.8 |
Última Actualización | 2023-06-14 |
Fecha de Publicación | 2023-01-21 |
Calificación | 3.86/5 Total de 14 Calificaciones |
Desarrollador | LessonMonkey |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } |