StyleGPT

Customize your theme background of ChatGPT

StyleGPTคืออะไร?

StyleGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Useful Extensions และคุณลักษณะหลักของมันคือ "Customize your theme background of ChatGPT"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย StyleGPT

ดาวน์โหลดไฟล์ส่วนขยาย StyleGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}