ChatGPT Prompts

ChatGPT Prompts

ChatGPT Prompts란 무엇입니까?

ChatGPT Prompts은(는) Cem PEHLİVAN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT Prompts"입니다.

확장 프로그램 스크린샷

screenshot

ChatGPT Prompts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a collection of prompt examples to be used with the ChatGPT model.

The ChatGPT model is a large language model trained by OpenAI that is capable of generating human-like text. By providing it with a prompt, it can generate responses that continue the conversation or expand on the given prompt.

In this extension, you will find a variety of prompts that can be used with ChatGPT. 

Enter "https://chat.openai.com/chat". Thanks to this plugin, you will see ready prompts prepared for you on the homepage.

We hope you find these prompts useful and have fun using ChatGPT!

Thanks! https://github.com/f/awesome-chatgpt-prompts                    

확장 프로그램 기본 정보

이름 ChatGPT Prompts ChatGPT Prompts
ID igaldenhhkaelahplnglcdcfmmhhmgdj
공식 URL https://chromewebstore.google.com/detail/chatgpt-prompts/igaldenhhkaelahplnglcdcfmmhhmgdj
설명 ChatGPT Prompts
파일 크기 31.55 KB
설치 횟수 10,000
현재 버전 0.3.0
최근 업데이트 2023-03-01
출시 날짜 2022-12-21
평점 3.77/5 총 13 개의 평점
개발자 Cem PEHLİVAN
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cempehlivan/chatgpt-prompt-chrome-extension
도움말 페이지 URL https://github.com/cempehlivan/chatgpt-prompt-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Prompts",
    "version": "0.3.0",
    "description": "ChatGPT Prompts",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ChatGPT Prompts"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}