kotep / Mastodon Widenify

// ==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;} \
" );
}