Google Meet Randomizer
Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard
Google Meet Randomizer란 무엇입니까?
Google Meet Randomizer은(는) appsbylamby에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard"입니다.
확장 프로그램 스크린샷
Google Meet Randomizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
** If you experience issues with this extension please email [email protected] ** This is a simple Chrome extension which generates a randomized list of participants on a Google Meet call. I built this to make our large group meetings easier, as it's often difficult to determine who has already given their update or who should be next. This extension can also be used to take attendance or randomly select participants. It includes 4 commands: Randomize (generates a randomly sorted list of names) Resync (keeps the list order the same, but adds / removes guests who have joined or left) Copy (copies the list of names to the clipboard) Autopost **New** (automatically posts to chat window when generating or resyncing lists) You can view the source code to this project here https://github.com/LambyPants/google-meet-randomizer 2.0.0 update - supports redesigned UI of Google Meet. Contact the developer if issues persist. 2.2.0 update - supports new UI of Google Meet 2.2.1 update - fixes bug with resync Some users have complained this extension doesn't work for them; I am guessing it's because the UI of Google Meet may vary region-to-region. If you experience issues please reach out to me and include (a) your region and (b) what error message, if any, you are encountering.
확장 프로그램 기본 정보
이름 | Google Meet Randomizer |
ID | lamfcglihfmokpfelfkepmhlggnkeppn |
공식 URL | https://chromewebstore.google.com/detail/google-meet-randomizer/lamfcglihfmokpfelfkepmhlggnkeppn |
설명 | Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard |
파일 크기 | 9.68 KB |
설치 횟수 | 2,130 |
현재 버전 | 2.2.3 |
최근 업데이트 | 2021-10-14 |
출시 날짜 | 2020-08-24 |
평점 | 2.83/5 총 6 개의 평점 |
개발자 | appsbylamby |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/LambyPants/google-meet-randomizer |
도움말 페이지 URL | https://github.com/LambyPants/google-meet-randomizer/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Randomizer", "version": "2.2.3", "description": "Randomly sorts Google Meet participants into a list which can be easily copied to your clipboard", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage", "activeTab" ], "content_scripts": [ { "js": [ "assets\/content-e0a4c960.js" ], "matches": [ "https:\/\/meet.google.com\/*" ] } ], "icons": { "48": "icon.png", "128": "large-icon.png" }, "web_accessible_resources": [ "content.js" ] } |