Sort the Meet
Show yourself in alphabetical order in participants list
ما هو Sort the Meet؟
Sort the Meet هو إضافة Chrome تم تطويرها بواسطة elizaveta.shashkova، والميزة الرئيسية لها هي "Show yourself in alphabetical order in participants list".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Sort the Meet
قم بتنزيل ملفات الامتداد Sort the Meet بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
By default, when you open a list of participants in Google Meet, all the participants are shown in alphabetical order except of you. You're always shown on top of the list and it's hard to understand when is your turn to speak. Sort the Meet extension solves this problem and shows you not on top of the list, but in the correct alphabetical position.
معلومات أساسية عن التمديد
الاسم | Sort the Meet |
ID | dokbaedihaiifdlfgbeillibkpngoikg |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg |
الوصف | Show yourself in alphabetical order in participants list |
حجم الملف | 58.11 KB |
عدد التثبيتات | 262 |
النسخة الحالية | 1.2 |
آخر تحديث | 2023-12-22 |
تاريخ النشر | 2021-09-25 |
تقييم | 4.67/5 مجموع تقييمات 6 |
المطور | elizaveta.shashkova |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sort the Meet", "description": "Show yourself in alphabetical order in participants list", "version": "1.2", "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/inject.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "16": "icons\/sort16.png", "48": "icons\/sort48.png", "128": "icons\/sort128.png" }, "browser_action": { "default_icon": "icons\/sort48.png" }, "web_accessible_resources": [ "js\/sort-users.js" ], "manifest_version": 2 } |