Bulk ChatGPT Prompter

Run bulk prompts on ChatGPT interface.

什么是Bulk ChatGPT Prompter?

Bulk ChatGPT Prompter是由https://mediafreeware.com开发的Chrome扩展程序,该扩展的主要功能是“Run bulk prompts on ChatGPT interface.”。

扩展截图

screenshot

下载Bulk ChatGPT Prompter扩展crx文件

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

扩展使用说明

                        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!                    

扩展基本信息

名称 Bulk ChatGPT Prompter Bulk ChatGPT Prompter
ID bhopgalabhagblkcnjakchccofcioaod
官方URL https://chromewebstore.google.com/detail/bulk-chatgpt-prompter/bhopgalabhagblkcnjakchccofcioaod
简介 Run bulk prompts on ChatGPT interface.
文件大小 767 KB
安装次数 96
当前版本 1.1
更新时间 2023-04-11
上架时间 2023-04-07
评分 5.00/5 共5次评分
开发者 https://mediafreeware.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.mediafreeware.com/bulk-chatgpt-prompter.html
帮助页面URL https://www.mediafreeware.com/bulk-chatgpt-prompter.html
隐私政策页面URL https://www.freepdfsolutions.com/privacypolicy.html
支持的语言 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'"
    }
}