Cmd-E AI

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

什么是Cmd-E AI?

Cmd-E AI是由Worthwhile Apps开发的Chrome扩展程序,该扩展的主要功能是“Quickly open a modal to query an LLM, without leaving your tab”。

扩展截图

screenshot

下载Cmd-E AI扩展crx文件

下载Cmd-E AI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 Cmd-E AI Cmd-E AI
ID pcgefnihjmhkfnlckogmhamnofbdkdcb
官方URL https://chromewebstore.google.com/detail/cmd-e-ai/pcgefnihjmhkfnlckogmhamnofbdkdcb
简介 Quickly open a modal to query an LLM, without leaving your tab
文件大小 95.62 KB
安装次数 34
当前版本 2.1.1
更新时间 2023-05-28
上架时间 2023-05-15
评分 5.00/5 共1次评分
开发者 Worthwhile Apps
电子邮箱 [email protected]
付费类型 free
扩展官网 https://cmd-e.com
帮助页面URL https://cmd-e.com/privacy
隐私政策页面URL https://claude-chrome-web.vercel.app/privacy
支持的语言 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": [
                ""
            ]
        }
    ]
}