Bulk ChatGPT Prompter

Run bulk prompts on ChatGPT interface.

¿Qué es Bulk ChatGPT Prompter?

Bulk ChatGPT Prompter es una extensión de Chrome desarrollada por https://mediafreeware.com, y su función principal es "Run bulk prompts on ChatGPT interface.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Bulk ChatGPT Prompter

Descarga archivos de extensión Bulk ChatGPT Prompter 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 the Bulk ChatGPT Prompter, a powerful browser extension designed to streamline your ChatGPT experience. Upload multiple prompts effortlessly through a CSV file, enabling seamless input processing. With customizable delay options, you have full control over the pace at which each row is sent, optimizing your workflow. The Bulk ChatGPT Prompter ensures you never lose tab focus while running prompts, keeping your work uninterrupted. Optimized for the ChatGPT interface, this extension is perfect for users seeking efficient and organized management of multiple prompts. Enhance your productivity and transform the way you interact with ChatGPT today!                    

Información Básica de la Extensión

Nombre Bulk ChatGPT Prompter Bulk ChatGPT Prompter
ID bhopgalabhagblkcnjakchccofcioaod
URL Oficial https://chromewebstore.google.com/detail/bulk-chatgpt-prompter/bhopgalabhagblkcnjakchccofcioaod
Descripción Run bulk prompts on ChatGPT interface.
Tamaño del Archivo 767 KB
Cantidad de Instalaciones 96
Versión Actual 1.1
Última Actualización 2023-04-11
Fecha de Publicación 2023-04-07
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador https://mediafreeware.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.mediafreeware.com/bulk-chatgpt-prompter.html
URL de la Página de Ayuda https://www.mediafreeware.com/bulk-chatgpt-prompter.html
URL de la Página de Política de Privacidad https://www.freepdfsolutions.com/privacypolicy.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bulk ChatGPT Prompter",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "author": "[email protected]",
    "version": "1.1",
    "icons": {
        "128": "images\/icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/arrive.min.js",
                "chatgpt.js"
            ],
            "css": [
                "css\/chatgpt-style.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "128": "images\/icon.png"
        },
        "default_title": "Bulk ChatGPT Prompter"
    },
    "options_ui": {
        "page": "dashboard.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*",
        "https:\/\/www.mediafreeware.com\/*",
        "https:\/\/www.google-analytics.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}