Fextralife Fixes

Attempts to make Fextralife wikis more usable. Hides the sidebar, comments, floating footer, and discord link. Also increases the width of the wiki content to use the space that the sidebar was using and removes the minimum height so there isn't empty space at the bottom of a short article.

  1. // ==UserScript==
  2. // @name Fextralife Fixes
  3. // @namespace fextralifefixes
  4. // @description Attempts to make Fextralife wikis more usable. Hides the sidebar, comments, floating footer, and discord link. Also increases the width of the wiki content to use the space that the sidebar was using and removes the minimum height so there isn't empty space at the bottom of a short article.
  5. // @include http://*.fextralife.com*
  6. // @include https://*.fextralife.com*
  7. // @grant GM_addStyle
  8. // @version 1.0
  9. // ==/UserScript==
  10. GM_addStyle(`
  11. .fex-main {
  12. min-height: 0px;
  13. }
  14. #wrapper {
  15. padding-left: 0px;
  16. transition: none;
  17. }
  18. #sidebar-wrapper {
  19. display: none;
  20. }
  21. .container-comments {
  22. display: none;
  23. }
  24. .sliderload {
  25. display: none;
  26. }
  27. .discussion-wrapper {
  28. display: none;
  29. }
  30. #btnComments {
  31. display: none;
  32. }
  33. .footer-sticky {
  34. display: none;
  35. }
  36. .hidden-xs {
  37. display: none;
  38. }
  39. `);