Gmail Pop Out Reply Default
Automatically opens the Pop Out Reply when clicking Reply, that's it.
ما هو Gmail Pop Out Reply Default؟
Gmail Pop Out Reply Default هو إضافة Chrome تم تطويرها بواسطة etnik29، والميزة الرئيسية لها هي "Automatically opens the Pop Out Reply when clicking Reply, that's it.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gmail Pop Out Reply Default
قم بتنزيل ملفات الامتداد Gmail Pop Out Reply Default بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
In Gmail: Opens the Pop Out Reply when clicking Reply. No information is collected.
معلومات أساسية عن التمديد
الاسم | Gmail Pop Out Reply Default |
ID | ogngkhlopjdkmfldjnhdinibcaffdnik |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/gmail-pop-out-reply-defau/ogngkhlopjdkmfldjnhdinibcaffdnik |
الوصف | Automatically opens the Pop Out Reply when clicking Reply, that's it. |
حجم الملف | 76.83 KB |
عدد التثبيتات | 94 |
النسخة الحالية | 2.0.0 |
آخر تحديث | 2023-06-18 |
تاريخ النشر | 2023-06-18 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | etnik29 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gmail Pop Out Reply Default", "description": "Automatically opens the Pop Out Reply when clicking Reply, that's it.", "version": "2.0.0", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icons.png", "48": "icons\/icons.png", "128": "icons\/icons.png" }, "default_title": "Gmail Pop Out Reply Default" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/mail\/*" ], "js": [ "content\/content.js" ] } ], "icons": { "16": "icons\/icons.png", "48": "icons\/icons.png", "128": "icons\/icons.png" }, "host_permissions": [ "https:\/\/mail.google.com\/*" ] } |