If you want to do this, it requires the Stylus extension for your browser ( Chrome , Firefox ). Stylus catches the CSS styling that determines how a website displays and selectively overrides those styles, allowing you to make the site look or behave differently for you. It only works for the user that has the extension and the style installed, so you can change it for you, but your players will still see the normal interface. Once installed, use it to create a style that works on the domain app.roll20.net. To turn names off completely, the style is pretty simple: #playerzone .player { display: none; } However, there is so much functionality packed into the player zone, that I would not recommend removing it. (though you can toggle the style on and off pretty easily in Stylus' menu bar drop down). If the zone is taking up too much room, try this: #playerzone .player { margin-left: 0px; margin-right: 0px; } .player .playername { font-size: 12px; padding: 3px 0 3px 0; line-height: 18px; background-repeat: no-repeat; width: 100px; max-height: 40px; word-wrap: break-word; cursor: pointer; position: relative;
} This duplicates the "small avatar" size, but works on the "names only" setting. It also reduces the spacing between names to 0, to give even more room. Note that I have not tried this with video, only with names and names+avatars. There may be other issues, but this should do the trick.