EmbedGPT - Embed ChatGPT content
Share with one click and easily paste externally.
ما هو EmbedGPT - Embed ChatGPT content؟
EmbedGPT - Embed ChatGPT content هو إضافة Chrome تم تطويرها بواسطة https://embedgpt.vercel.app، والميزة الرئيسية لها هي "Share with one click and easily paste externally.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة EmbedGPT - Embed ChatGPT content
قم بتنزيل ملفات الامتداد EmbedGPT - Embed ChatGPT content بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Easily share ChatGPT content with one click. You can paste it to a forum as an iframe or share it to communities such as Twitter and Reddit.
معلومات أساسية عن التمديد
الاسم | EmbedGPT - Embed ChatGPT content |
ID | nbjoccgcnhjmhpholoagaodhgiehbloa |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/embedgpt-embed-chatgpt-co/nbjoccgcnhjmhpholoagaodhgiehbloa |
الوصف | Share with one click and easily paste externally. |
حجم الملف | 9.15 KB |
عدد التثبيتات | 114 |
النسخة الحالية | 1.2.2 |
آخر تحديث | 2023-04-26 |
تاريخ النشر | 2023-03-02 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | https://embedgpt.vercel.app |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://embedgpt.vercel.app |
عنوان صفحة المساعدة | https://embedgpt.vercel.app |
اللغات المدعومة | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_description__", "version": "1.2.2", "manifest_version": 3, "name": "__MSG_name__", "background": { "service_worker": "background.bundle.js" }, "permissions": [ "activeTab", "scripting" ], "action": { "default_icon": { "16": "16x16.png", "32": "32x32.png" }, "default_title": "Share Content" }, "icons": { "16": "16x16.png", "32": "32x32.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/c\/*" ], "js": [ "contentScript.bundle.js" ], "run_at": "document_end" } ], "default_locale": "ko" } |