RARBG Show thumbnails in torrent lists (Plain JavaScript)

Shows the thumbnail on every item of the torrent list, highlight matched torrent in searchpattern

2017-09-16 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         RARBG Show thumbnails in torrent lists (Plain JavaScript)
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Shows the thumbnail on every item of the torrent list, highlight matched torrent in searchpattern
// @author       You
// @include     /^(https?:)?\/\/(www\.)?rarbg\.(is|to|com)\/(torrents\.php.*|catalog\/.*|top10)$/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var searchpattern = [
        'Yonitale',
        'RylskyArt',
        'MetArt',
        'EroticBeauty',
        'Errotica-Archives',
        'SexArt',
        'FemJoy',
        'Hegre',
        'X-Art',
        'VivThomas',
        'Nubiles',
        'TheLifeErotic',
        'Domai'
    ];
    searchpattern.forEach(function(el, i){
        searchpattern[i] = el.toLowerCase();
    });
    var matches = document.querySelectorAll('.lista2 .lista a');
    var regExp = /\\'([^)]+)\\'/;
    if(matches && matches.length) {
        for(var i=0; i<matches.length; i++) {
            if(matches[i] && matches[i].onmouseover) {
                var inh = matches[i].innerHTML.toLowerCase();
                for(var j=0; j<searchpattern.length; j++) {
                    if(inh.includes(searchpattern[j])) {
                        matches[i].style.color = '#ff4db0';
                        matches[i].style.background = 'pink';
                        break;
                    }
                }
                var match = regExp.exec(matches[i].onmouseover);
                if(match) {
                    matches[i].parentNode.previousSibling.innerHTML = '<img src="'+match[1]+'"></img>';
                }
            }
        }
    }
})();