It's a script that puts the chat on the left.
How-to:
1. Get ViolentMonkey, Greasemonkey, Tampermonkey, or any similar add-on for your browser. (This was created in the first, and should be simple enough to work in any. First two are open-source.)
2. "Add new script", then paste the below in.
Also credit to lunitin from chat for code help.
How-to:
1. Get ViolentMonkey, Greasemonkey, Tampermonkey, or any similar add-on for your browser. (This was created in the first, and should be simple enough to work in any. First two are open-source.)
2. "Add new script", then paste the below in.
Code:
// ==UserScript== // @name Angband Live: Chat On Left // @namespace Violentmonkey Scripts // @match https://angband.live/play# // @grant none // @version 1.0 // @author enop, lunitin // @description 10/17/2024 // ==/UserScript== var styles = `.flex { flex-direction: row-reverse !important; }` var styleSheet = document.createElement("style") styleSheet.textContent = styles document.head.appendChild(styleSheet)
Comment