SaveGPT
Save your ChatGPT conversations
ما هو SaveGPT؟
SaveGPT هو إضافة Chrome تم تطويرها بواسطة Piyush Santwani، والميزة الرئيسية لها هي "Save your ChatGPT conversations".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SaveGPT
قم بتنزيل ملفات الامتداد SaveGPT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/
معلومات أساسية عن التمديد
الاسم | |
ID | openekjijmgjlhodnlbofmbmhhcogdli |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli |
الوصف | Save your ChatGPT conversations |
حجم الملف | 40.26 KB |
عدد التثبيتات | 8,398 |
النسخة الحالية | 1.0.30 |
آخر تحديث | 2023-04-16 |
تاريخ النشر | 2022-12-10 |
تقييم | 2.88/5 مجموع تقييمات 34 |
المطور | Piyush Santwani |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://savegpt.com/ |
عنوان صفحة سياسة الخصوصية | https://savegpt.com/privacy_policy |
اللغات المدعومة | 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\/*" ] } ] } |