Bulk ChatGPT Prompter

Run bulk prompts on ChatGPT interface.

Bulk ChatGPT Prompter là gì?

Bulk ChatGPT Prompter là một tiện ích mở rộng Chrome được phát triển bởi https://mediafreeware.com, và tính năng chính của nó là "Run bulk prompts on ChatGPT interface.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bulk ChatGPT Prompter

Tải xuống các tệp mở rộng Bulk ChatGPT Prompter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bulk ChatGPT Prompter Bulk ChatGPT Prompter
ID bhopgalabhagblkcnjakchccofcioaod
URL Chính Thức https://chromewebstore.google.com/detail/bulk-chatgpt-prompter/bhopgalabhagblkcnjakchccofcioaod
Mô tả Run bulk prompts on ChatGPT interface.
Kích Thước Tệp 767 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-04-11
Ngày Phát Hành 2023-04-07
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://mediafreeware.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.mediafreeware.com/bulk-chatgpt-prompter.html
URL Trang Trợ Giúp https://www.mediafreeware.com/bulk-chatgpt-prompter.html
URL Trang Chính Sách Bảo Mật https://www.freepdfsolutions.com/privacypolicy.html
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}