NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Mastodon Widenify // @namespace Violentmonkey Scripts // @description Widens the columns on mastodon.social. // @match *://mastodon.social/* // @grant GM_addStyle // @license MIT // ==/UserScript== { GM_addStyle ( " \ div.column, div.drawer {flex-grow: 1;} \ div.media-gallery {height: auto !important;} \ .media-gallery__item-gifv-thumbnail {transform: inherit; -webkit-transform: inherit;} \ " ); }