StyleGPT

Customize your theme background of ChatGPT

Cos'è StyleGPT?

StyleGPT è un'estensione di Chrome sviluppata da Useful Extensions, e la sua funzione principale è "Customize your theme background of ChatGPT".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione StyleGPT

Scarica i file di estensione StyleGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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".                    

Informazioni di Base sull'Estensione

Nome StyleGPT StyleGPT
ID fpiocbojdfcglcjponijamekjaaafjgj
URL Ufficiale https://chromewebstore.google.com/detail/stylegpt/fpiocbojdfcglcjponijamekjaaafjgj
Descrizione Customize your theme background of ChatGPT
Dimensione del File 8.96 MB
Conteggio Installazioni 211
Versione Corrente 0.0.1.1
Ultimo Aggiornamento 2023-02-14
Data di Pubblicazione 2023-01-16
Valutazione 3.80/5 Totale 5 Valutazioni
Sviluppatore Useful Extensions
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto http://tinyurl.com/stylegpt-feedback
URL della Pagina della Politica sulla Privacy https://docs.google.com/document/d/1PRnFUIjVBoWw2WCh60-HpkGVFB4_fJM-QoQDU_uDjPE/edit
Lingue Supportate 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"
    ]
}