SaveGPT
Save your ChatGPT conversations
Cos'è SaveGPT?
SaveGPT è un'estensione di Chrome sviluppata da Piyush Santwani, e la sua funzione principale è "Save your ChatGPT conversations".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SaveGPT
Scarica i file di estensione SaveGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
URL Ufficiale | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
Descrizione | Save your ChatGPT conversations |
Dimensione del File | 40.26 KB |
Conteggio Installazioni | 8,398 |
Versione Corrente | 1.0.30 |
Ultimo Aggiornamento | 2023-04-16 |
Data di Pubblicazione | 2022-12-10 |
Valutazione | 2.88/5 Totale 34 Valutazioni |
Sviluppatore | Piyush Santwani |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://savegpt.com/ |
URL della Pagina della Politica sulla Privacy | https://savegpt.com/privacy_policy |
Lingue Supportate | 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\/*" ] } ] } |