StyleGPT

Customize your theme background of ChatGPT

StyleGPT क्या है?

StyleGPT Useful Extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize your theme background of ChatGPT"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में StyleGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}