1337x torrent : read images from description and show in listview

It can read images from description and show in listview on the 1337x torrent site.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        1337x torrent : read images from description and show in listview
// @name:hu     1337x torrent lista oldalon a képek megjelenítése
// @namespace   1337x
// @description It can read images from description and show in listview on the 1337x torrent site.
// @description:hu Ez a szkript a 1337x torrent oldalon, a lista nézeten megjeleníti a képeket, amiket az egyes torrentek leírásából olvas ki.
// @include     http*://*1337x*
// @version     2
// @grant       none
// @license MIT
// @require     https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js
// ==/UserScript==

$('td.coll-1 > a:nth-child(2)').each(function(index, value) { 
  
  $( this ).append( $('<div>').load(value.href+' #description img', function(){
    
    $( 'div > img', value ).each(function() {
      
      $( this ).attr("src", $( this ).attr('data-original') );
      $( this ).css('max-height','300px');
      
    });

  }));
  
});