Ben Tsai

How to anonymize a Kinopio space

This is useful for sharing screenshots of Kinopio spaces with sensitive information. It replaces all letters with asterisks. In the JavaScript console, execute this code:

document
.querySelectorAll(".card-content .name > span")
.forEach(name => (name.textContent = name.textContent.replace(/[^\s]/g, "*")))

Thursday, July 29, 2021