GPT Theme
A Chrome extension to change the Theme ChatGPT
Vad är GPT Theme?
GPT Theme är en Chrome-tillägg utvecklad av Leah, och dess huvudfunktion är "A Chrome extension to change the Theme ChatGPT".
Tilläggsskärmbilder
Ladda ner GPT Theme-förlängningens CRX-fil
Ladda ner GPT Theme-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A Chrome extension to change the theme of ChatGPT
- dark mode/light mode
- design your own input color and send button icon
ChatGPT 主题插件
-有夜晚护眼/白天两种模式
-自定义你的发送框和发送键 Grundläggande Information om Tillägg
| Namn | |
| ID | opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| Officiell webbadress | https://chromewebstore.google.com/detail/gpt-theme/opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| Beskrivning | A Chrome extension to change the Theme ChatGPT |
| Filstorlek | 55.05 KB |
| Antal Installationer | 32 |
| Aktuell Version | 1.1 |
| Senast Uppdaterad | 2023-11-10 |
| Publiceringsdatum | 2023-11-05 |
| Betyg | 3.67/5 Totalt 3 Betyg |
| Utvecklare | Leah |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://github.com/yiwen001/GPT-Theme-Privacy-Policy |
| Stödda Språk | 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"
}
} | |