SaveGPT
Save your ChatGPT conversations
Apa itu SaveGPT?
SaveGPT adalah ekstensi Chrome yang dikembangkan oleh Piyush Santwani, dan fitur utamanya adalah "Save your ChatGPT conversations".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi SaveGPT
Unduh file ekstensi SaveGPT dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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/
Informasi Dasar Ekstensi
Nama | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
URL Resmi | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
Deskripsi | Save your ChatGPT conversations |
Ukuran File | 40.26 KB |
Jumlah Instalasi | 8,398 |
Versi Saat Ini | 1.0.30 |
Terakhir Diperbarui | 2023-04-16 |
Tanggal Publikasi | 2022-12-10 |
Penilaian | 2.88/5 Total 34 Penilaian |
Pengembang | Piyush Santwani |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://savegpt.com/ |
URL Halaman Kebijakan Privasi | https://savegpt.com/privacy_policy |
Bahasa yang Didukung | 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\/*" ] } ] } |