Sleazy Fork is available in English.

Literotica Reader

Typographical elements used to achieve an attractive, distinctive appearance that indicates finesse, elegance and sophistication

  1. // ==UserScript==
  2. // @name Literotica Reader
  3. // @namespace tuktuk3103@gmail.com
  4. // @description Typographical elements used to achieve an attractive, distinctive appearance that indicates finesse, elegance and sophistication
  5. // @include https://www.literotica.com/s/*
  6. // @version 1
  7. // @grant none
  8. // @icon https://speedy.literotica.com/favicon.ico
  9. // ==/UserScript==
  10.  
  11. //Whitespace margin provides visual breathing room for the eye that makes it look more approachable
  12. document.querySelector('.x-r15.b-story-body-x').setAttribute('style', 'max-width:80%;');
  13. document.querySelector('.x-r15.b-story-body-x').style.marginLeft = "5%";
  14.  
  15. document.getElementById("w").setAttribute('style', 'min-width:80%;');
  16. document.getElementById("w").style.marginLeft = "5%";
  17.  
  18. document.getElementById("root").setAttribute('style', 'min-width:80%;');
  19. document.getElementById("root").style.marginLeft = "5%";
  20.  
  21. //Generous vertical space separates lines of text that improves readability by almost 20%
  22. document.querySelector('p').setAttribute('style', 'line-height:1.6;');
  23.  
  24. //Removes Ads
  25. document.getElementById("b-top").remove();