RARBG thumbnails

Shows the thumbnail on every item of the torrent list.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Advertisement:

// ==UserScript==
// @name         RARBG thumbnails
// @namespace    http://tampermonkey.net/
// @version      1.3
// @description  Shows the thumbnail on every item of the torrent list.
// @author       Phus Lu
// @match        https://rarbgprx.org/torrents.php*
// @match        https://rarbgproxy.org/torrents.php*
// @match        https://proxyrarbg.org/torrents.php*
// @match        https://rargb.to/torrents.php*
// @grant        none
// ==/UserScript==

/* globals jQuery, $, waitForKeyElements */

// Show the thumbnails on RARBG listing

$('.lista2').each(function() {
    var link = $("td.lista:eq(1) a[onmouseover]", this)
	if (link.length) {
        $("td.lista:first-of-type img", this).attr("src", /src=\\'(.*?)\\'/ig.exec(link.attr("onmouseover").toString())[1])
	}
});