GPT Theme
A Chrome extension to change the Theme ChatGPT
GPT Themeとは何ですか?
GPT ThemeはLeahによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension to change the Theme ChatGPT」です。
拡張機能のスクリーンショット
GPT Theme拡張機能のCRXファイルをダウンロード
GPT Theme拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A Chrome extension to change the theme of ChatGPT
- dark mode/light mode
- design your own input color and send button icon
ChatGPT 主题插件
-有夜晚护眼/白天两种模式
-自定义你的发送框和发送键 拡張機能の基本情報
| 名前 | |
| ID | opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| 公式URL | https://chromewebstore.google.com/detail/gpt-theme/opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| 説明 | A Chrome extension to change the Theme ChatGPT |
| ファイルサイズ | 55.05 KB |
| インストール数 | 32 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2023-11-10 |
| 公開日 | 2023-11-05 |
| 評価 | 3.67/5 合計 3 レビュー |
| 開発者 | Leah |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://github.com/yiwen001/GPT-Theme-Privacy-Policy |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "GPT Theme",
"version": "1.1",
"description": "A Chrome extension to change the Theme ChatGPT",
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/*"
],
"css": [
"styles.css"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icon.png"
}
} | |