gpt.best

Share ChatGPT Transcripts

Что такое gpt.best?

gpt.best - это расширение Chrome, разработанное Riley Tomasek, и его основная функция - "Share ChatGPT Transcripts".

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

screenshot

Скачать файл CRX расширения gpt.best

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

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

                        GPTBest adds a share button to the ChatGPT app that creates a shareable link from the current conversation. It's great for sharing longer conversations that don't fit in a screenshot.                    

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

Название gpt.best gpt.best
ID lfjehajehlondfmmdnacgomigbkfahln
Официальный URL https://chromewebstore.google.com/detail/gptbest/lfjehajehlondfmmdnacgomigbkfahln
Описание Share ChatGPT Transcripts
Размер файла 7.94 KB
Количество установок 850
Текущая Версия 1.1.0
Последнее Обновление 2023-03-21
Дата публикации 2022-12-12
Рейтинг 4.20/5 Всего 5 оценок
Разработчик Riley Tomasek
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gpt.best/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "gpt.best",
    "description": "Share ChatGPT Transcripts",
    "version": "1.1.0",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}