Cmd-E AI

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

Cmd-E AI là gì?

Cmd-E AI là một tiện ích mở rộng Chrome được phát triển bởi Worthwhile Apps, và tính năng chính của nó là "Quickly open a modal to query an LLM, without leaving your tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cmd-E AI

Tải xuống các tệp mở rộng Cmd-E AI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cmd-E AI Cmd-E AI
ID pcgefnihjmhkfnlckogmhamnofbdkdcb
URL Chính Thức https://chromewebstore.google.com/detail/cmd-e-ai/pcgefnihjmhkfnlckogmhamnofbdkdcb
Mô tả Quickly open a modal to query an LLM, without leaving your tab
Kích Thước Tệp 95.62 KB
Số Lần Cài Đặt 34
Phiên Bản Hiện Tại 2.1.1
Cập Nhật Lần Cuối 2023-05-28
Ngày Phát Hành 2023-05-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Worthwhile Apps
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://cmd-e.com
URL Trang Trợ Giúp https://cmd-e.com/privacy
URL Trang Chính Sách Bảo Mật https://claude-chrome-web.vercel.app/privacy
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}