SaveGPT
Save your ChatGPT conversations
Qu'est-ce que SaveGPT ?
SaveGPT est une extension Chrome développée par Piyush Santwani, et sa fonction principale est "Save your ChatGPT conversations".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SaveGPT
Téléchargez les fichiers d'extension SaveGPT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
URL Officiel | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
Description | Save your ChatGPT conversations |
Taille du Fichier | 40.26 KB |
Nombre d'Installations | 8,398 |
Version Actuelle | 1.0.30 |
Dernière Mise à Jour | 2023-04-16 |
Date de Publication | 2022-12-10 |
Évaluation | 2.88/5 Total 34 Évaluations |
Développeur | Piyush Santwani |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://savegpt.com/ |
URL de la Page de Politique de Confidentialité | https://savegpt.com/privacy_policy |
Langues Prises en Charge | 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\/*" ] } ] } |