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
Eメール [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": [
                ""
            ]
        }
    ]
}