Advertisement
Guest User

Roumenuv Rouming Fit Pictures

a guest
Apr 9th, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Roumenuv Rouming Fit Pictures
  3. // @namespace   Violentmonkey Scripts
  4. // @match       https://www.rouming.cz/roumingShow.php?file=*
  5. // @grant       none
  6. // @version     1.0
  7. // @description Resizes pictures that are too wide to fit the screen.
  8. // ==/UserScript==
  9.  
  10. function setMaxWidth() {
  11.   document.getElementsByTagName("img")[0].style.maxWidth = document.documentElement.clientWidth + "px";
  12. }
  13.  
  14. setMaxWidth();
  15. window.addEventListener("resize", setMaxWidth);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement