Cmd-E AI

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

Τι είναι το Cmd-E AI;

Το Cmd-E AI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Worthwhile Apps, και η κύρια λειτουργία του είναι "Quickly open a modal to query an LLM, without leaving your tab".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Cmd-E AI

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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": [
                ""
            ]
        }
    ]
}