Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

Empornium Simplify 4.0.0

filter by seed number <br> get direct download links <br> put thumbnails on search page <br> get rid of ads

basically this script is designed to let you not have to leave the search results page

  • removes elements with # of seeds fewer than the minSeeds variable in the SCRIPT CONFIGURATION section of the script
  • replaces download links on search pages with direct links to torrent files (taken from http://userscripts.org/scripts/show/10348)
  • puts thumbnails of the item right next to it on the search results page. on by default, can be turned off in the SCRIPT CONFIGURATION section of the script if your bandwidth is low





  • Aug 14, 2008
    treas0n Scriptwright

    Great job!
    IMHO, It would look better if the pictures were in a new row instead of many columns
    Replace the getPicLinks() function with this to see what i mean:

    function getPicsLinks(htmlSource, rowID) {
        htmlSource = strBetween(htmlSource, 'Peers', 'Add Comment');
        while (true) {
            // get link element
            link = strBetween(htmlSource, 'fullpic.php', 'a>');
            link = link.replace("'>", ">");
            imgI = htmlSource.indexOf('fullpic.php');
            if (imgI == -1) {break;}
            linkElem = '<a href="http://www.empornium.us/fullpic.php' + link + 'a>';
            htmlSource = htmlSource.substring(imgI+21);
            // insert into html
    		var rows = new Array(); 
    		var rows = document.getElementsByTagName('table')[13].getElementsByTagName("tr");
    
    		for (var x=0;x < rows.length;x++) {
    			if (rows[x].id == rowID) {
    				var i = x+1;
    			}
    		}
            		
    		if (document.getElementById("r"+rowID)) {
    			document.getElementById("r"+rowID).innerHTML = document.getElementById("r"+rowID).innerHTML + linkElem;
    		} else {
    			var x=document.getElementsByTagName('table')[13].insertRow(i);
    			var y=x.insertCell(0)
    			y.colSpan = 11;
    			y.id = "r"+rowID;
    			y.bgColor = "#a9c5dd";
    			y.innerHTML=linkElem;
    		}
            
        }
    }
    
    

    It'll be great if you included this mod in a future release

     
    Jun 20, 2008
    phR3d User

    Your script is AMAZING! Saved me tons of time! ;) If future versions were able to exclude type, like Anime, Comics or Porn Games it would become my favorite script! Thanks!

     
    May 24, 2008
    Howard Script's author

    script updated

    v4.0.0
    * fixed script for site update
    * disabled script on detail pages. wasn't working right

     
    May 6, 2008
    Howard Script's author

    script updated

    v3.0.0
    * removes side banners and top banner

    You could comment on this script if you were logged in.