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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sort the Meet

ดาวน์โหลดไฟล์ส่วนขยาย Sort the Meet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
}