GPT Icon Changer

An extension that allows you to easily customize the ChatGPT icon. Upload your favorite image and apply it to the icon.

GPT Icon Changer란 무엇입니까?

GPT Icon Changer은(는) Jey Code에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that allows you to easily customize the ChatGPT icon. Upload your favorite image and apply it to the icon."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GPT Icon Changer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Easily customize your ChatGPT icon with this extension. Upload your favorite image and apply it as your chat icon. Of course, you can freely adjust the icon size as well. Immerse yourself in a unique chat experience with your personalized icon!

※If the extension does not work properly, it is likely due to updates on ChatGPT's side. We will make every effort to fix the issue as soon as possible and appreciate your patience.

【Update Log】
Bug Fixes: Addressed an issue where the extension stopped working due to an HTML update on the GPT side.

Version 1.1.2
Bug Fixes: Resolved an issue where the icon modification feature stopped working due to a change in GPT-4's icon color. Also, the feature has been updated to work correctly regardless of future changes to the icon color.

Version 1.1.1
Bug Fixes: Fixed an issue where the extension stopped working due to a change in ChatGPT's html.

Version 1.1.0
New Features: Added support for English language and made minor UI adjustments accordingly.

Version 1.0.1
Bug Fixes: Resolved issue where the extension stopped working due to changes in the ChatGPT URL.                    

확장 프로그램 기본 정보

이름 GPT Icon Changer GPT Icon Changer
ID blcpdafalkbeopjpeeopplipehfkenkc
공식 URL https://chromewebstore.google.com/detail/gpt-icon-changer/blcpdafalkbeopjpeeopplipehfkenkc
설명 An extension that allows you to easily customize the ChatGPT icon. Upload your favorite image and apply it to the icon.
파일 크기 18.56 KB
설치 횟수 810
현재 버전 1.1.3
최근 업데이트 2023-12-01
출시 날짜 2023-04-11
평점 5.00/5 총 2 개의 평점
개발자 Jey Code
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Icon Changer",
    "description": "__MSG_appDescription__",
    "version": "1.1.3",
    "manifest_version": 3,
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "typhoon16.png",
        "48": "typhoon48.png",
        "128": "typhoon128.png"
    }
}