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

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

                        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
URL страницы помощи 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"
    }
}