Bulk ChatGPT Prompter

Run bulk prompts on ChatGPT interface.

Vad är Bulk ChatGPT Prompter?

Bulk ChatGPT Prompter är en Chrome-tillägg utvecklad av https://mediafreeware.com, och dess huvudfunktion är "Run bulk prompts on ChatGPT interface.".

Tilläggsskärmbilder

screenshot

Ladda ner Bulk ChatGPT Prompter-förlängningens CRX-fil

Ladda ner Bulk ChatGPT Prompter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Bulk ChatGPT Prompter Bulk ChatGPT Prompter
ID bhopgalabhagblkcnjakchccofcioaod
Officiell webbadress https://chromewebstore.google.com/detail/bulk-chatgpt-prompter/bhopgalabhagblkcnjakchccofcioaod
Beskrivning Run bulk prompts on ChatGPT interface.
Filstorlek 767 KB
Antal Installationer 96
Aktuell Version 1.1
Senast Uppdaterad 2023-04-11
Publiceringsdatum 2023-04-07
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare https://mediafreeware.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.mediafreeware.com/bulk-chatgpt-prompter.html
Hjälpsida URL https://www.mediafreeware.com/bulk-chatgpt-prompter.html
URL till Sekretesspolicy Sidan https://www.freepdfsolutions.com/privacypolicy.html
Stödda Språk 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'"
    }
}