ChatGPT Terminal Theme
Customize the look of the OpenAI ChatGPT.
O que é ChatGPT Terminal Theme?
ChatGPT Terminal Theme é uma extensão do Chrome desenvolvida por Sen Lin, e sua principal característica é "Customize the look of the OpenAI ChatGPT.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Terminal Theme
Baixe arquivos de extensão ChatGPT Terminal Theme no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
** Don't forget to set your ChatGPT to "dark" mode for the correct effect. ** Change your ChatGPT interface to enjoy the timeless feel of a classic terminal interface. You can also choose the Blue or Red themes.
Informações Básicas da Extensão
Nome | ChatGPT Terminal Theme |
ID | gklcfplkibblhbjhafebgmiaepliflmc |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc |
Descrição | Customize the look of the OpenAI ChatGPT. |
Tamanho do Arquivo | 16.1 KB |
Contagem de Instalações | 40 |
Versão Atual | 1.0 |
Última Atualização | 2023-08-23 |
Data de Publicação | 2023-08-23 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Sen Lin |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Terminal Theme", "version": "1.0", "description": "Customize the look of the OpenAI ChatGPT.", "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ { "resources": [ "styles_blue.css", "styles_red.css", "terminal.css" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "gptThemeLogo.png", "48": "gptThemeLogo.png", "128": "gptThemeLogo.png" } }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "gptThemeLogo.png", "48": "gptThemeLogo.png", "128": "gptThemeLogo.png" } } |