https://www.reddit.com/r/Roll20/comments/163tyye/fix_for_the_narrow_chat_logs/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button


여기 질문 올라와도 다들 레딧에 검색해보라고만 하고 해결책을 바로 알려주는 사람이 없길레, 검색 귀찮은 사람들을 위해 링크 가져옴


크롬 확장 프로그렘인 Tampermonkey 설치가 필수임


설치 이후 스크립드에 다음 명령어 작성하면 된단다


// ==UserScript== // @name Roll20 Chatlog fix // @namespace http://tampermonkey.net/ // @version 0.1 // @description Fix width issue on roll20 chat logs // @author Jessica (deeg4116 on Discord) // @match https://app.roll20.net/campaigns/chatarchive/* // @icon https://www.google.com/s2/favicons?sz=64&domain=mozilla.org // @grant none // ==/UserScript== (function() { 'use strict'; document.getElementById("textchat").getElementsByClassName("content")[0].style = ""; })();

자세한 건 나에게 묻지 마라, 나도 Tampermonkey는 써본 적 없어서 모른다.