SaveGPT
Save your ChatGPT conversations
Co to jest SaveGPT?
SaveGPT to rozszerzenie Chrome opracowane przez Piyush Santwani, a jego główną funkcją jest „Save your ChatGPT conversations”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SaveGPT
Pobierz pliki rozszerzeń SaveGPT 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
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/
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
Oficjalny URL | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
Opis | Save your ChatGPT conversations |
Rozmiar pliku | 40.26 KB |
Liczba instalacji | 8,398 |
Aktualna Wersja | 1.0.30 |
Ostatnia Aktualizacja | 2023-04-16 |
Data Publikacji | 2022-12-10 |
Ocena | 2.88/5 Łącznie 34 Oceny |
Deweloper | Piyush Santwani |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://savegpt.com/ |
Adres URL Strony Polityki Prywatności | https://savegpt.com/privacy_policy |
Obsługiwane Języki | 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\/*" ] } ] } |