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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}