Skip to content

Instantly share code, notes, and snippets.

@andrewchilds
Last active September 25, 2020 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewchilds/21a09d59d393378f856605109003ec80 to your computer and use it in GitHub Desktop.
Save andrewchilds/21a09d59d393378f856605109003ec80 to your computer and use it in GitHub Desktop.
Google Meet: Kindergarten Edition
/*
This is a quick attempt to make Google Meet work better for someone in Kindergarten
(one in particular - it may or may not work for yours).
Requirements:
- I used the "Stylebot" extension to make this CSS work, but any other related extension should also work.
Changes:
- Hides the "who's here" rotating carousel which is distracting.
- Hides the "end call" button
- Hides the "display captions" and "meeting details" links
- Makes the mute button much wider, like a spacebar
- Makes the two buttons less circular
Other things you may consider trying:
- Use "View in Fullscreen" + the window maximizing, to hide the browser tabs/address bar.
- The "Google Meet Push To Talk" extension, which allows the mute button to be
controllable with the spacebar.
Warning:
This could break at any moment.
Copyright © 2020 Andrew Childs
------------------------------
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* Hide the "who's here" carousel, which is a distraction */
.e0UWKb {
display: none;
}
/* Hide the "end call" button */
.s1GInc {
display: none;
}
/* Make the mute toggle wider, more like a spacebar. */
/* See also the "Google Meet Push To Talk" extension! */
.uJNmj {
width: 200px;
}
/* Make video toggle button a little bigger */
.SfBQ6c .uJNmj {
width: 70px;
}
/* Make mute/video toggle buttons smaller on the "join" screen */
.EhAUAc .uJNmj {
width: 60px;
}
/* Make both toggle buttons less circular */
.JRY2Pb {
border-radius: 14px;
}
/* Hide "display captions" link */
.SyIese {
display: none;
}
/* Hide "Meeting details" link */
.gSlHI {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment