Cmd-E AI

Quickly open a modal to query an LLM, without leaving your tab

¿Qué es Cmd-E AI?

Cmd-E AI es una extensión de Chrome desarrollada por Worthwhile Apps, y su función principal es "Quickly open a modal to query an LLM, without leaving your tab".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Cmd-E AI

Descarga archivos de extensión Cmd-E AI 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

                        Cmd-E AI is a rapid way to query a large language model, without leaving your browser tab.

When reading or writing content in the browser, you might find yourself doing this dance too often:
- copying some text on the page
- opening a new Claude or ChatGPT tab
- pasting the text and annotating the input field with some question or instruction
- waiting for the response before returning to where you were

Or maybe you just switch tabs a lot to ask Claude something. What if you had a shortcut key to open a modal on any page, and could ask Claude in one or two keypresses?

Cmd-E opens a modal with fully customizable template prompts, prefilled with any text you had selected on the webpage.

Instructions:
1. Install the chrome extension
2. Optionally, select some text on any webpage
3. Press Cmd + E (or Control + E on windows)                    

Información Básica de la Extensión

Nombre Cmd-E AI Cmd-E AI
ID pcgefnihjmhkfnlckogmhamnofbdkdcb
URL Oficial https://chromewebstore.google.com/detail/cmd-e-ai/pcgefnihjmhkfnlckogmhamnofbdkdcb
Descripción Quickly open a modal to query an LLM, without leaving your tab
Tamaño del Archivo 95.62 KB
Cantidad de Instalaciones 34
Versión Actual 2.1.1
Última Actualización 2023-05-28
Fecha de Publicación 2023-05-15
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Worthwhile Apps
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://cmd-e.com
URL de la Página de Ayuda https://cmd-e.com/privacy
URL de la Página de Política de Privacidad https://claude-chrome-web.vercel.app/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Quickly open a modal to query an LLM, without leaving your tab",
    "version": "2.1.1",
    "manifest_version": 3,
    "name": "Cmd-E AI",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "commands": {
        "my-shortcut": {
            "suggested_key": {
                "default": "Ctrl+E"
            },
            "description": "Open modal"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "modal.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}