make the submission image fit the height of the screen
目前為
// ==UserScript==
// @name image view fit-height furaffinity.net
// @namespace Violentmonkey Scripts
// @match https://www.furaffinity.net/view*
// @grant none
// @version 1.0.0
// @author justrunmyscripts
// @license MIT
// @description make the submission image fit the height of the screen
// ==/UserScript==
const element = document.querySelector('#submissionImg');
element.setAttribute('style', `
max-height: calc(100vh - 110px);
`);