Mastodon media Resizer

Restrict image size on mastodon.social/

// ==UserScript==
// @name         Mastodon media Resizer
// @description  Restrict image size on mastodon.social/
// @match        https://mastodon.social/*
// @grant        GM_addStyle
// @version 0.0.1.20250524153400
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
 
GM_addStyle(`
 
.media-gallery, .video-player {
aspect-ratio: unset !important;
}
 
  img, video {
    //max-width: 100px !important;
    max-height: 100px !important;
    object-fit: contain !important;
}
 
.zoomable-image img, .gifv video {
max-width: 100% !important;
    max-height: 80% !important;
}

.fullscreen video {
max-height: unset !important
}
`);