Cmd-E AI

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

Cmd-E AI क्या है?

Cmd-E AI Worthwhile Apps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly open a modal to query an LLM, without leaving your tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Cmd-E AI एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}