SaveGPT

Save your ChatGPT conversations

Что такое SaveGPT?

SaveGPT - это расширение Chrome, разработанное Piyush Santwani, и его основная функция - "Save your ChatGPT conversations".

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

screenshot

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

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

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

                        It's a browser extension that auto-saves your ChatGPT conversations and adds a "Chat History" button within the ChatGPT website. This is an indepedent project and is not affiliated with OpenAI or ChatGPT.
Website -  - https://savegpt.com/                    

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

Название SaveGPT SaveGPT
ID openekjijmgjlhodnlbofmbmhhcogdli
Официальный URL https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli
Описание Save your ChatGPT conversations
Размер файла 40.26 KB
Количество установок 8,398
Текущая Версия 1.0.30
Последнее Обновление 2023-04-16
Дата публикации 2022-12-10
Рейтинг 2.88/5 Всего 34 оценок
Разработчик Piyush Santwani
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://savegpt.com/
URL страницы политики конфиденциальности https://savegpt.com/privacy_policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SaveGPT",
    "description": "Save your ChatGPT conversations",
    "icons": {
        "128": "icons\/history.png",
        "16": "icons\/history.png",
        "32": "icons\/history.png",
        "48": "icons\/history.png"
    },
    "manifest_version": 3,
    "version": "1.0.30",
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "permissions": [
        "storage",
        "webRequest",
        "activeTab",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "tooltip.js",
                "utils.js",
                "index.js"
            ],
            "css": [
                "index.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "utils.js",
                "twitter.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*",
                "download.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}