ChatGPT Shortcut

Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.

ما هو ChatGPT Shortcut؟

ChatGPT Shortcut هو إضافة Chrome تم تطويرها بواسطة Patrik Martinko، والميزة الرئيسية لها هي "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ChatGPT Shortcut

قم بتنزيل ملفات الامتداد ChatGPT Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This is especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ...

Structure of query: https://chat.openai.com/chat?q={query}                    

معلومات أساسية عن التمديد

الاسم ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
عنوان URL الرسمي https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
الوصف Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
حجم الملف 28.12 KB
عدد التثبيتات 1,680
النسخة الحالية 1.0.4
آخر تحديث 2023-08-07
تاريخ النشر 2023-01-27
تقييم 3.67/5 مجموع تقييمات 3
المطور Patrik Martinko
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/patrik-martinko/app-chatgpt-shortcut
عنوان صفحة المساعدة https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Shortcut",
    "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.",
    "version": "1.0.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}