Ben Tsai

How to hide multiplayer avatars in Kinopio

Especially in large multiplayer sessions, you may want to hide others’ avatars to focus. Here’s some code to do that:

var ss = document.createElement("style")
ss.type = "text/css"
ss.innerText = ".user-label { display: none }"
document.head.appendChild(ss)

To show the avatars again, remove that node:

ss.parentNode.removeChild(ss)

Friday, July 30, 2021