StyleGPT

Customize your theme background of ChatGPT

StyleGPT란 무엇입니까?

StyleGPT은(는) Useful Extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize your theme background of ChatGPT"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A theme selector for ChatGPT (chat.openai.com) with some awesome backgrounds 🌅

Currently free and available to all. No data is collected, and this extension only edits the website's CSS (styling) 🧑‍🎨

How it works:
1. Go to https://chat.openai.com/chat
2. Click on StyleGPT from your Chrome Extension Menu
3. Select a theme, and the background on ChatGPT will automatically update -- and stay updated :)

🎉 NEW: You can now use any image as your background if you have the image URL. This is easy if you'd like to use an image from Google Images. Just go to the image, right-click, and click "Copy Image Address".                    

확장 프로그램 기본 정보

이름 StyleGPT StyleGPT
ID fpiocbojdfcglcjponijamekjaaafjgj
공식 URL https://chromewebstore.google.com/detail/stylegpt/fpiocbojdfcglcjponijamekjaaafjgj
설명 Customize your theme background of ChatGPT
파일 크기 8.96 MB
설치 횟수 211
현재 버전 0.0.1.1
최근 업데이트 2023-02-14
출시 날짜 2023-01-16
평점 3.80/5 총 5 개의 평점
개발자 Useful Extensions
이메일 [email protected]
결제 유형 free
도움말 페이지 URL http://tinyurl.com/stylegpt-feedback
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1PRnFUIjVBoWw2WCh60-HpkGVFB4_fJM-QoQDU_uDjPE/edit
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "StyleGPT",
    "description": "Customize your theme background of ChatGPT",
    "version": "0.0.1.1",
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/images\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "webNavigation"
    ]
}