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
官方網址 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": [
                ""
            ]
        }
    ]
}