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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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