ChatGPTCustomizer

Customize your assistant using ChatGPT API with multiple profiles.

ChatGPTCustomizer란 무엇입니까?

ChatGPTCustomizer은(는) soulhighwing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your assistant using ChatGPT API with multiple profiles."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Introducing ChatGPTCustomizer - a powerful extension for the ChatGPT API that allows you to customize your experience with multiple pre-defined profiles for different use cases such as translation, proofreading and language teaching. With ChatGPTCustomizer you can easily save and load profiles from CSV or JSON files and import/export your conversation history for further analysis. You can even change the role of each response and adjust the variables of the ChatGPT API to suit your needs. Plus, with support for GPT-3.5-Turbo API and quick select and submit functionality, you’ll have everything you need to take your conversations to the next level. Download it now and start customizing!
1.6.1 changes:
debug for special characters 
1.6.0 changes:
-add "//gpt" for quick request in any input area. for example: "//gpt tell me a joke" will replace the string with a joke gpt tell you.
1.5.7 list:
- Multiple pre-defined profiles for different usage: translation from/to different languages, proofreading, summarization, language teaching...etc.
- Create, save/load pre-defined profiles from CSV or JSON.
- Import/export conversation history to JSON file.
- Choose a single conversation history to submit or submit them all.
- Change the role of each response: system, assistant or user.
- Customize the variables of the ChatGPT API.
- Support the API from GPT-3.5 Turbo.
- Quick select and submit.                    

확장 프로그램 기본 정보

이름 ChatGPTCustomizer ChatGPTCustomizer
ID ciceinlnjocpopoccfhekjebkpapogoc
공식 URL https://chromewebstore.google.com/detail/chatgptcustomizer/ciceinlnjocpopoccfhekjebkpapogoc
설명 Customize your assistant using ChatGPT API with multiple profiles.
파일 크기 73.41 KB
설치 횟수 129
현재 버전 1.6.1
최근 업데이트 2023-04-06
출시 날짜 2023-03-10
개발자 soulhighwing
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/soulhighwing/ChatGPTCustomizer/blob/main/Privacy_policy.txt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPTCustomizer",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/*"
    ],
    "description": "Customize your assistant using ChatGPT API with multiple profiles.",
    "version": "1.6.1",
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "playground.html",
                "playground.js",
                "newplayground.png",
                "icon.png",
                "copytoclipboard.png",
                "copytotextarea.png",
                "pinned.png",
                "pinnedgrey.png",
                "unpinblack.png",
                "unpin.png",
                "user.png",
                "system.png",
                "assistant.png",
                "importcontext.png",
                "exportcontext.png",
                "options.png",
                "deletecontext.png",
                "submit.png",
                "options.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options.html",
        "default_icon": "icon128.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}