ChatGPT Prompts
Add presets to openai's ChatGPT
ChatGPT Prompts란 무엇입니까?
ChatGPT Prompts은(는) adnankhankhattak2382에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add presets to openai's ChatGPT"입니다.
확장 프로그램 스크린샷
ChatGPT Prompts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Sometimes user want to search specific prompts on Chat GPT but each time the user reloads the web page, he/she has to retype the prompt again which is way time consuming. In order to solve this problem, we present you this solution in which you do not have to worry about retyping presets for Chat GPT again and again. Using this extension is way simple and straightforward, first you have to type something in the text area of the Chat GPT or the prompt that you want to save, then, click on "Add Preset" and enter title for the preset and then click anywhere on the screen; the preset will be added to your Chat GPT which you can simply use by clicking on the preset and the text will be copied to the Text Area of the Chat GPT.
확장 프로그램 기본 정보
이름 | ChatGPT Prompts |
ID | nlpmnipkgionhbejmjgomfgahndllppi |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-prompts/nlpmnipkgionhbejmjgomfgahndllppi |
설명 | Add presets to openai's ChatGPT |
파일 크기 | 257 KB |
설치 횟수 | 309 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2023-05-02 |
출시 날짜 | 2023-03-28 |
평점 | 4.00/5 총 2 개의 평점 |
개발자 | adnankhankhattak2382 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Prompts", "version": "1.0.4", "description": "Add presets to openai's ChatGPT", "permissions": [ "storage" ], "action": { "default_title": "ChatGPT Prompts", "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/*\/*" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "css": [ "css\/styles.css" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ] } |