GPT Theme
A Chrome extension to change the Theme ChatGPT
Cos'è GPT Theme?
GPT Theme è un'estensione di Chrome sviluppata da Leah, e la sua funzione principale è "A Chrome extension to change the Theme ChatGPT".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GPT Theme
Scarica i file di estensione GPT Theme 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 Chrome extension to change the theme of ChatGPT
- dark mode/light mode
- design your own input color and send button icon
ChatGPT 主题插件
-有夜晚护眼/白天两种模式
-自定义你的发送框和发送键 Informazioni di Base sull'Estensione
| Nome | |
| ID | opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| URL Ufficiale | https://chromewebstore.google.com/detail/gpt-theme/opgkagnoipbbbpjjnnlnpfoeakdihgkh |
| Descrizione | A Chrome extension to change the Theme ChatGPT |
| Dimensione del File | 55.05 KB |
| Conteggio Installazioni | 32 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2023-11-10 |
| Data di Pubblicazione | 2023-11-05 |
| Valutazione | 3.67/5 Totale 3 Valutazioni |
| Sviluppatore | Leah |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | https://github.com/yiwen001/GPT-Theme-Privacy-Policy |
| Lingue Supportate | 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"
}
} | |