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