NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Mastodon column resizer // @description Adjust column size to screen size // @license MIT // @namespace https://mastodon.tetaneutral.net/ // @updateURL https://openuserjs.org/meta/Grandasse/Mastodon_column_resizer.meta.js // @version 0.1 // @author Grandasse // @match https://mastodon.tetaneutral.net/* // ==/UserScript== var head = document.getElementsByTagName('head')[0]; head.innerHTML += ` <style> @media (min-width: 1200px) { .drawer { width: 300px; } .column { width: calc( calc(100% - 300px) / 3); } } </style> `;