Export GPT - Export your chats with GPTs
An extension to export your chats with pre-trained transformers
ما هو Export GPT - Export your chats with GPTs؟
Export GPT - Export your chats with GPTs هو إضافة Chrome تم تطويرها بواسطة Rizwan، والميزة الرئيسية لها هي "An extension to export your chats with pre-trained transformers".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Export GPT - Export your chats with GPTs
قم بتنزيل ملفات الامتداد Export GPT - Export your chats with GPTs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension to export your conversations with pre-trained transformers into a sharable PDF file. Currently it only supports ChatGPT
معلومات أساسية عن التمديد
الاسم | Export GPT - Export your chats with GPTs |
ID | pipfffccmkdbpmnnpcnbecjmbgacnkob |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/export-gpt-export-your-ch/pipfffccmkdbpmnnpcnbecjmbgacnkob |
الوصف | An extension to export your chats with pre-trained transformers |
حجم الملف | 268 KB |
عدد التثبيتات | 118 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2023-05-10 |
تاريخ النشر | 2023-05-05 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | Rizwan |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Export GPT - Export your chats with GPTs", "description": "An extension to export your chats with pre-trained transformers", "version": "1.0.2", "manifest_version": 3, "action": [], "icons": { "16": "\/img\/exportgpt-16.png", "32": "\/img\/exportgpt-32.png", "48": "\/img\/exportgpt-48.png", "128": "\/img\/exportgpt-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "script.js" ] } ], "web_accessible_resources": [ { "resources": [ "style.css", "img\/icon-main.png", "img\/loader.png" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |