StyleGPT

Customize your theme background of ChatGPT

StyleGPTとは何ですか?

StyleGPTはUseful Extensionsによって開発されたChromeの拡張機能で、その主な機能は「Customize your theme background of ChatGPT」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

StyleGPT拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}