ChatGPT Chat Extractor
A basic chat text Extractor
ما هو ChatGPT Chat Extractor؟
ChatGPT Chat Extractor هو إضافة Chrome تم تطويرها بواسطة Invictus، والميزة الرئيسية لها هي "A basic chat text Extractor".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ChatGPT Chat Extractor
قم بتنزيل ملفات الامتداد ChatGPT Chat Extractor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
When chatting with ChatGPT, you would want to copy all the conversation you have had with ChatGPT. But you know copy/paste takes a lot of time. This extension helps you download a printable html file of your conversation with the chatGPT bot. Just click the extension icon and it will download all of the conversation in current chat tab into an html file. The html will have all of the styles and formatting as in original chat window.
معلومات أساسية عن التمديد
الاسم | |
ID | ppkdabpmgbglpnghdbmnemflamdfgdkj |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/chatgpt-chat-extractor/ppkdabpmgbglpnghdbmnemflamdfgdkj |
الوصف | A basic chat text Extractor |
حجم الملف | 27.39 KB |
عدد التثبيتات | 31 |
النسخة الحالية | 0.0.20 |
آخر تحديث | 2023-02-07 |
تاريخ النشر | 2023-02-06 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Invictus |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://www.buymeacoffee.com/invic1us |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Chat Extractor", "description": "A basic chat text Extractor", "version": "0.0.20", "action": [], "web_accessible_resources": [ { "resources": [ "images\/icon32.png" ], "matches": [ "*:\/\/chat.openai.com\/*" ] } ], "permissions": [ "scripting" ], "content_scripts": [ { "matches": [ "*:\/\/*.openai.com\/*" ], "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/chat.openai.com\/*" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 3 } |