FAImageFit

Add a button to have a full view resized to screen.

  1. // ==UserScript==
  2. // @name FAImageFit
  3. // @namespace http://tampermonkey.net/
  4. // @version 2
  5. // @description Add a button to have a full view resized to screen.
  6. // @author ThatDumbCat
  7. // @match https://www.furaffinity.net/view/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var img = document.getElementById("submissionImg");
  14. img.src = img.getAttribute("data-fullview-src");
  15. img.style.maxWidth = "100%";
  16. img.style.height = "auto";
  17. })();