Chat Saver
A browser extension that allows you to save the current chat history of ChatGPT to your local device.
Co to jest Chat Saver?
Chat Saver to rozszerzenie Chrome opracowane przez Taipa Xu, a jego główną funkcją jest „A browser extension that allows you to save the current chat history of ChatGPT to your local device.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Chat Saver
Pobierz pliki rozszerzeń Chat Saver w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A browser extension that allows you to save the current chat history of ChatGPT to your local device.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gbccnnpigcfcheaeicpldgmjjojjmldb |
Oficjalny URL | https://chromewebstore.google.com/detail/chat-saver/gbccnnpigcfcheaeicpldgmjjojjmldb |
Opis | A browser extension that allows you to save the current chat history of ChatGPT to your local device. |
Rozmiar pliku | 37.18 KB |
Liczba instalacji | 47 |
Aktualna Wersja | 0.2.1 |
Ostatnia Aktualizacja | 2023-05-08 |
Data Publikacji | 2023-03-09 |
Deweloper | Taipa Xu |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/TaipaXu/chat-saver |
Adres URL Strony Pomocy | https://github.com/TaipaXu/chat-saver |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chat Saver", "version": "0.2.1", "description": "A browser extension that allows you to save the current chat history of ChatGPT to your local device.", "icons": { "16": ".\/assets\/icon.png", "48": ".\/assets\/icon.png", "128": ".\/assets\/icon.png" }, "action": { "default_icon": { "16": ".\/assets\/icon.png", "24": ".\/assets\/icon.png", "32": ".\/assets\/icon.png" }, "default_title": "chat saver", "default_popup": "popup.html" }, "background": { "type": "module", "service_worker": "service.js" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/chat.openai.com\/" ] } |