AI Bar - Prompt ChatGPT from the URL bar

Type your prompt after "ai" in the Chrome URL bar and press return!

Τι είναι το AI Bar - Prompt ChatGPT from the URL bar;

Το AI Bar - Prompt ChatGPT from the URL bar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mash, και η κύρια λειτουργία του είναι "Type your prompt after "ai" in the Chrome URL bar and press return!".

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

screenshot

Λήψη αρχείου CRX της επέκτασης AI Bar - Prompt ChatGPT from the URL bar

Λήψη αρχείων επέκτασης AI Bar - Prompt ChatGPT from the URL bar σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        AI Bar enables you to enter your prompt in the URL bar, hit return and jump to ChatGPT, saving a few clicks for you.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AI Bar - Prompt ChatGPT from the URL bar AI Bar - Prompt ChatGPT from the URL bar
ID ljjafkobiacdlnpndeacabenohfnidhk
Επίσημο URL https://chromewebstore.google.com/detail/ai-bar-prompt-chatgpt-fro/ljjafkobiacdlnpndeacabenohfnidhk
Περιγραφή Type your prompt after "ai" in the Chrome URL bar and press return!
Μέγεθος Αρχείου 33.28 KB
Αριθμός Εγκαταστάσεων 46
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2023-07-02
Ημερομηνία Δημοσίευσης 2023-04-03
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής mash
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AI Bar - Prompt ChatGPT from the URL bar",
    "description": "Type your prompt after \"ai\" in the Chrome URL bar and press return!",
    "version": "1.3",
    "omnibox": {
        "keyword": "ai"
    },
    "background": {
        "service_worker": "src\/service-worker.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/debug.content.js",
                "src\/content.chatgpt.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/page.chatgpt.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "Customize which AI to prompt",
        "default_popup": "src\/popup.html"
    }
}