ChatGPT Full Width
Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.
¿Qué es ChatGPT Full Width?
ChatGPT Full Width es una extensión de Chrome desarrollada por zmunkas, y su función principal es "Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChatGPT Full Width
Descarga archivos de extensión ChatGPT Full Width en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
If you are using ChatGPT and got tired of the criminally narrow chat bubbles especially when using for coding, you can add this extension to make the chat fill the available space. With a better, full screen view the site is much more concise and code segments can be read and used much more easily.
Información Básica de la Extensión
Nombre | ChatGPT Full Width |
ID | gfnkaajgicgkehogagoiccdpecbhjikd |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-full-width/gfnkaajgicgkehogagoiccdpecbhjikd |
Descripción | Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles. |
Tamaño del Archivo | 540 KB |
Cantidad de Instalaciones | 711 |
Versión Actual | 1.1 |
Última Actualización | 2023-12-16 |
Fecha de Publicación | 2023-06-07 |
Calificación | 4.33/5 Total de 9 Calificaciones |
Desarrollador | zmunkas |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://bmc.link/zoltanmunkas |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Full Width", "description": "Increase the chat size to match the screen size in ChatGPT, instead of the default narrow chat bubbles.", "version": "1.1", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "author": "[email protected]", "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "css": [ "styles.css" ], "js": [ "content.js" ] } ] } |