Sort the Meet

Show yourself in alphabetical order in participants list

什麼是Sort the Meet?

Sort the Meet是由elizaveta.shashkova開發的Chrome擴展程式,該擴展的主要功能是“Show yourself in alphabetical order in participants list”。

擴展截圖

screenshot

下載Sort the Meet擴展crx文件

下載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
官方網址 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
}