ChatGPT Deeplink

Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.

Что такое ChatGPT Deeplink?

ChatGPT Deeplink - это расширение Chrome, разработанное Paul Arterburn, и его основная функция - "Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ChatGPT Deeplink

Скачайте файлы расширений ChatGPT Deeplink в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        This adds a URL parameter to ChatGPT so you can deep link to start new conversations from other applications (like Raycast). The URL scheme is: https://chat.openai.com/?query=your+query+here

It also adds a custom search engine to Chrome, so in the Omnibox you can type `ai {query}`. Triggering this command may either be a space or tab, depending on your settings (chrome://settings/searchEngines).                    

Основная информация о расширении

Название ChatGPT Deeplink ChatGPT Deeplink
ID bmkbpmkcppdmkdbpihmijgeilchgeapo
Официальный URL https://chromewebstore.google.com/detail/chatgpt-deeplink/bmkbpmkcppdmkdbpihmijgeilchgeapo
Описание Adds a url parameter to ChatGPT so that https://chat.openai.com/?query=your+query+here starts a conversation.
Размер файла 12.55 KB
Количество установок 83
Текущая Версия 1.1
Последнее Обновление 2023-08-08
Дата публикации 2023-08-07
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Paul Arterburn
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://chat.openai.com
URL страницы помощи https://twitter.com/parterburn
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Deeplink",
    "description": "Adds a url parameter to ChatGPT so that https:\/\/chat.openai.com\/?query=your+query+here starts a conversation.",
    "version": "1.1",
    "homepage_url": "https:\/\/chat.openai.com",
    "omnibox": {
        "keyword": "ai"
    },
    "permissions": [
        "scripting",
        "webNavigation",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "settings.html"
    }
}