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."입니다.
확장 프로그램 스크린샷
Bulk ChatGPT Prompter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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'" } } |