Sort the Meet
Show yourself in alphabetical order in participants list
Sort the Meet क्या है?
Sort the Meet elizaveta.shashkova द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show yourself in alphabetical order in participants list"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Sort the Meet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
गोपनीयता नीति पृष्ठ URL | 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 } |