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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة http://tinyurl.com/stylegpt-feedback
عنوان صفحة سياسة الخصوصية 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"
    ]
}