SaveGPT
Save your ChatGPT conversations
What is SaveGPT?
SaveGPT is a Chrome extension developed by Piyush Santwani, and its main feature is "Save your ChatGPT conversations".
Extension Screenshots
Download SaveGPT Extension CRX File
Download SaveGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
Official URL | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
Description | Save your ChatGPT conversations |
File Size | 40.26 KB |
Installation Count | 8,398 |
Current Version | 1.0.30 |
Last Updated | 2023-04-16 |
Publish Date | 2022-12-10 |
Rating | 2.88/5 Total 34 Ratings |
Developer | Piyush Santwani |
[email protected] | |
Payment Type | free |
Extension Website | https://savegpt.com/ |
Privacy Policy Page URL | https://savegpt.com/privacy_policy |
Supported Languages | 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\/*" ] } ] } |