ChatGPT Shortcut

Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.

¿Qué es ChatGPT Shortcut?

ChatGPT Shortcut es una extensión de Chrome desarrollada por Patrik Martinko, y su función principal es "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ChatGPT Shortcut

Descarga archivos de extensión ChatGPT Shortcut 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 especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ...

Structure of query: https://chat.openai.com/chat?q={query}                    

Información Básica de la Extensión

Nombre ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
URL Oficial https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
Descripción Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Tamaño del Archivo 28.12 KB
Cantidad de Instalaciones 1,680
Versión Actual 1.0.4
Última Actualización 2023-08-07
Fecha de Publicación 2023-01-27
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador Patrik Martinko
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/patrik-martinko/app-chatgpt-shortcut
URL de la Página de Ayuda https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Shortcut",
    "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.",
    "version": "1.0.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}