ChatGPT Theme Switcher
Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…
ChatGPT Theme Switcherとは何ですか?
ChatGPT Theme Switcherはmnrzmalikによって開発されたChromeの拡張機能で、その主な機能は「Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.…」です。
拡張機能のスクリーンショット
ChatGPT Theme Switcher拡張機能のCRXファイルをダウンロード
ChatGPT Theme Switcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface. This extension adds a user-friendly button that allows you to seamlessly toggle between Light and Dark modes on the OpenAI Chat webpage, catering to your visual preferences and lighting conditions.
Features:
1. Effortless Theme Switching: With just a click, easily switch between Light and Dark themes.
2. Intuitive User Interface: A simple, minimalistic, and elegant button placed strategically for easy access.
3. Auto-Detection: The extension automatically detects and preserves your theme preference.
4 .Dynamic Response: The extension adapts dynamically to changes in the webpage and window resizing events, ensuring a smooth user experience.
Whether you prefer the Light theme for its classic, crisp visibility, or the Dark theme for its eye-friendly, reduced-glare interface, the ChatGPT Theme Switcher is your go-to tool for effortless theme management on the OpenAI Chat website. 拡張機能の基本情報
| 名前 | |
| ID | lhlamdabcdkbcfkcdielhappmlalbacd |
| 公式URL | https://chromewebstore.google.com/detail/chatgpt-theme-switcher/lhlamdabcdkbcfkcdielhappmlalbacd |
| 説明 | Introducing the ChatGPT Theme Switcher, a Chrome extension designed to enhance your user experience on OpenAI's chat interface.… |
| ファイルサイズ | 37.44 KB |
| インストール数 | 65 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2023-06-13 |
| 公開日 | 2023-06-12 |
| 評価 | 1.00/5 合計 1 レビュー |
| 開発者 | mnrzmalik |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.linkedin.com/in/nrzmalik/ |
| ヘルプページのURL | https://www.linkedin.com/in/nrzmalik/ |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ChatGPT Theme Switcher",
"version": "1.0",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"js": [
"content.js"
]
}
]
} | |