FAImageFit

Resizes images to fit screen (based off https://greasyfork.org/en/scripts/368237-faresizefitscreen but resizes by default)

As of 2018-09-26. See the latest version.

// ==UserScript==
// @name        FAImageFit
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Resizes images to fit screen (based off https://greasyfork.org/en/scripts/368237-faresizefitscreen but resizes by default)
// @author       ThatDumbCat
// @match        https://www.furaffinity.net/view/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
        var img = document.getElementById("submissionImg");
        img.src = img.getAttribute("data-fullview-src");
        img.style.width = "100%";
})();