ChatGPT Query Detector

A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box

ما هو ChatGPT Query Detector؟

ChatGPT Query Detector هو إضافة Chrome تم تطويرها بواسطة codekansas، والميزة الرئيسية لها هي "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".

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

screenshot

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

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

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

                        This is a simple Chrome extension which loads a bit of Javascript to the ChatGPT website to detect if the "q" parameter was set, and if so, enters it into the chat bar.                    

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

الاسم ChatGPT Query Detector ChatGPT Query Detector
ID fpmkloadngjobjlckhokcaklldkjbojh
عنوان URL الرسمي https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh
الوصف A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
حجم الملف 33.96 KB
عدد التثبيتات 38
النسخة الحالية 1.2
آخر تحديث 2023-05-03
تاريخ النشر 2023-02-15
تقييم 1.00/5 مجموع تقييمات 1
المطور codekansas
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/codekansas/chatgpt-chrome-extension
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Query Detector",
    "description": "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box",
    "version": "1.2",
    "icons": {
        "128": "128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}