Sleazy Fork is available in English.

RARBBG - Full size mouseover

Shows the full poster on mouse over instead of the thumbnail.

  1. // ==UserScript==
  2. // @name RARBBG - Full size mouseover
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2.1
  5. // @description Shows the full poster on mouse over instead of the thumbnail.
  6. // @author clutterskull@gmail.com
  7. // @match https://rarbg.to/torrents.php*
  8. // @grant none
  9. // ==/UserScript==
  10. /* jshint -W097 */
  11. 'use strict';
  12.  
  13. document._onmousemove = document.onmousemove;
  14. document.onmousemove= null;
  15.  
  16. $('#overlib').css({ position: 'fixed', top: 10, right: 10, left: 'auto' })
  17.  
  18. $('.lista a').each(function() {
  19. var matches = String($(this).attr('onmouseover')).match(/static\/over\/(\w+\.\w+)/i);
  20. if (matches) {
  21. $(this).attr('onmouseover', 'return overlib(\'<img src="//dyncdn.me/posters2/' + matches[1][0] + '/' + matches[1] + '" border=0>\')');
  22. }
  23. });