Sleazy Fork is available in English.

[Konachan / yande.re / LB] Search: Remove Dead Space

Makes use of much of the empty space on the posts pages to show more thumbnails. Useful if you increase the size and/or number of thumbnails.

  1. // ==UserScript==
  2. // @name [Konachan / yande.re / LB] Search: Remove Dead Space
  3. // @namespace Zolxys
  4. // @description Makes use of much of the empty space on the posts pages to show more thumbnails. Useful if you increase the size and/or number of thumbnails.
  5. // @include /^https?://konachan\.com/post/?($|\?|#)/
  6. // @include /^https?://konachan\.net/post/?($|\?|#)/
  7. // @include /^https?://yande\.re/post/?($|\?|#)/
  8. // @include /^https?://lolibooru\.moe/post/?($|\?|#)/
  9. // @version 1.2
  10. // ==/UserScript==
  11. var ss = document.createElement('style');
  12. ss.type = 'text/css';
  13. ss.textContent = [
  14. 'body {padding: 1em .6%;}',
  15. 'div.content {width: 84%; margin: 0; padding: 0;}',
  16. 'div.sidebar {width: 15%; margin: 0 .4% 0 0; padding: 0;}',
  17. 'div#news-ticker {margin: -1em -.6% 1em;}',
  18. ''].join('\n');
  19. document.head.appendChild(ss);
  20. var n = document.getElementById('lsidebar');
  21. if (n)
  22. n.parentNode.removeChild(n);