Completely removes all Roll20 interface, leaving just the VTT screen.
Intended to be used for streaming in person or online to use Roll20 simply as a digital map image. Suggest minimizing the chat window before activating this style.
Authorkinchj
LicenseNo License
CategoryRoll20
Created
Updated
Size986 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Completely removes all Roll20 interface, leaving just the VTT screen.
Intended to be used for streaming in person or online to use Roll20 simply as a digital map image. Suggest minimizing the chat window before activating this style.
/* ==UserStyle==
@name Roll20 Hide Full Interface
@version 20220428.22.14
@namespace userstyles.world/user/kinchj
@description Completely removes all Roll20 interface, leaving just the VTT screen.
Intended to be used for streaming in person or online to use Roll20 simply as a digital map image. Suggest minimizing the chat window before activating this style.
@author kinchj
@license No License
==/UserStyle== */
@-moz-document regexp("https://app.roll20.*.net/editor/.*") {
#playerzone,
#zoomslider,
.zoomValue,
#secondary-toolbar,
#sidebarcontrol,
#page-toolbar,
.handle.showtip,
div.ui-dialog:not([class="ui-dialog ui-widget ui-widget-content ui-corner-all ui-draggable ui-resizable initiativedialog"]),
#floatingtoolbar,
#macrobar,
#radial-menu,
.player,
.dark-mode-switch
{
display: none !important;
}
body > div.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.initiativedialog.ui-draggable.ui-resizable {
display: inherit !important;
}
}