Bulk ChatGPT Prompter

Run bulk prompts on ChatGPT interface.

ما هو Bulk ChatGPT Prompter؟

Bulk ChatGPT Prompter هو إضافة Chrome تم تطويرها بواسطة https://mediafreeware.com، والميزة الرئيسية لها هي "Run bulk prompts on ChatGPT interface.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Bulk ChatGPT Prompter

قم بتنزيل ملفات الامتداد Bulk ChatGPT Prompter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://www.mediafreeware.com/bulk-chatgpt-prompter.html
عنوان صفحة سياسة الخصوصية 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'"
    }
}