Bulk ChatGPT Prompter
Run bulk prompts on ChatGPT interface.
Apa itu Bulk ChatGPT Prompter?
Bulk ChatGPT Prompter adalah ekstensi Chrome yang dikembangkan oleh https://mediafreeware.com, dan fitur utamanya adalah "Run bulk prompts on ChatGPT interface.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bulk ChatGPT Prompter
Unduh file ekstensi Bulk ChatGPT Prompter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | Bulk ChatGPT Prompter |
ID | bhopgalabhagblkcnjakchccofcioaod |
URL Resmi | https://chromewebstore.google.com/detail/bulk-chatgpt-prompter/bhopgalabhagblkcnjakchccofcioaod |
Deskripsi | Run bulk prompts on ChatGPT interface. |
Ukuran File | 767 KB |
Jumlah Instalasi | 96 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2023-04-11 |
Tanggal Publikasi | 2023-04-07 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | https://mediafreeware.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.mediafreeware.com/bulk-chatgpt-prompter.html |
URL Halaman Bantuan | https://www.mediafreeware.com/bulk-chatgpt-prompter.html |
URL Halaman Kebijakan Privasi | https://www.freepdfsolutions.com/privacypolicy.html |
Bahasa yang Didukung | 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'" } } |