SaveGPT
Save your ChatGPT conversations
Vad är SaveGPT?
SaveGPT är en Chrome-tillägg utvecklad av Piyush Santwani, och dess huvudfunktion är "Save your ChatGPT conversations".
Tilläggsskärmbilder
Ladda ner SaveGPT-förlängningens CRX-fil
Ladda ner SaveGPT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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/
Grundläggande Information om Tillägg
Namn | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
Officiell webbadress | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
Beskrivning | Save your ChatGPT conversations |
Filstorlek | 40.26 KB |
Antal Installationer | 8,398 |
Aktuell Version | 1.0.30 |
Senast Uppdaterad | 2023-04-16 |
Publiceringsdatum | 2022-12-10 |
Betyg | 2.88/5 Totalt 34 Betyg |
Utvecklare | Piyush Santwani |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://savegpt.com/ |
URL till Sekretesspolicy Sidan | https://savegpt.com/privacy_policy |
Stödda Språk | 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\/*" ] } ] } |