Remove spacing - mangareader.to

Removes the space between pages

  1. // ==UserScript==
  2. // @name Remove spacing - mangareader.to
  3. // @namespace Violentmonkey Scripts
  4. // @match https://mangareader.to/read/*
  5. // @grant none
  6. // @version 1.0
  7. // @author Lag
  8. // @description Removes the space between pages
  9. // ==/UserScript==
  10.  
  11.  
  12.  
  13.  
  14. // Your CSS as text
  15. var styles = `
  16. body.page-readerr {
  17. background: none !important;
  18. }
  19. .container-reader-chapter .iv-card {
  20. margin: 0 auto -5px !important;
  21. }
  22. .container {
  23. padding: 0px !important;
  24. }
  25. `
  26.  
  27. var styleSheet = document.createElement("style")
  28. styleSheet.type = "text/css"
  29. styleSheet.innerText = styles
  30. document.head.appendChild(styleSheet)