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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
}