GPT Everywhere
Use ChatGPT on the whole internet.
¿Qué es GPT Everywhere?
GPT Everywhere es una extensión de Chrome desarrollada por ptmr, y su función principal es "Use ChatGPT on the whole internet.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GPT Everywhere
Descarga archivos de extensión GPT Everywhere 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
This is a Chrome/Edge extension that allows you to use the OpenAI GPT-3 API to generate text in any textarea or textfield on the web. Lightweight and fast, vanilla JavaScript, no dependencies. Usage Instructions First go to extension settings and enter an OpenAI API Key. You may generate a new API Key from https://beta.openai.com/account/api-keys Press Ctrl + . anywhere on the web. Type a command in the command field, e.g. "Write an E-Mail reply" Any selected text will autofill the context field. If the source field from which you started the interation is an a textarea or textfield, the result will show in this element. Else it will be pasted into the context field.
Información Básica de la Extensión
Nombre | |
ID | nkfclenpjlmkpoaopeaoioodcefhnebj |
URL Oficial | https://chrome.google.com/webstore/detail/gpt-everywhere/nkfclenpjlmkpoaopeaoioodcefhnebj |
Descripción | Use ChatGPT on the whole internet. |
Tamaño del Archivo | 233 KB |
Cantidad de Instalaciones | 136 |
Versión Actual | 1.3.1 |
Última Actualización | 2023-01-21 |
Fecha de Publicación | 2023-01-10 |
Calificación | 3.00/5 Total de 2 Calificaciones |
Desarrollador | ptmr |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/ptmrio/gpt-everywhere |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Everywhere", "description": "Use ChatGPT on the whole internet.", "version": "1.3.1", "action": { "default_popup": "gpt.html", "default_icon": ".\/img\/logo-32x32.png" }, "permissions": [ "clipboardWrite", "clipboardRead", "storage", "activeTab", "scripting" ], "icons": { "16": ".\/img\/logo-16x16.png", "32": ".\/img\/logo-32x32.png", "192": ".\/img\/logo-192x192.png" }, "host_permissions": [ "https:\/\/api.openai.com\/" ], "options_page": "options.html", "commands": { "gptShowPrompt": { "suggested_key": { "windows": "Ctrl+Period", "mac": "Command+Period", "chromeos": "Ctrl+Period", "linux": "Ctrl+Period" }, "description": "Run GPT on the current page." } }, "background": { "service_worker": "background.js" } } |