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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}