MyEpisodes Downloader

Adds download links to MyEpisodes website

As of 17. 09. 2019. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        MyEpisodes Downloader
// @description Adds download links to MyEpisodes website
// @namespace   https://greatest.deepsurf.us/en/users/814-bunta
// @include     *myepisodes.com/allinone*
// @include     *myepisodes.com/epslist*
// @include     *myepisodes.com/show*
// @include     *myepisodes.com/epsbyshow*
// @version     1.7
// @Author      Bunta
// @license     http://creativecommons.org/licenses/by-nc-sa/3.0/us/
// @grant       none
// ==/UserScript==


/* Console import for testing:
var body = document.getElementsByTagName("body")[0];
var script = document.createElement('script');
script.type = "text/javascript";
script.src = "http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js";
body.appendChild(script);
var $ = JQuery
*/

(function() {
    function Tracker(shortname, icon, searchurl, useNumbers, appendText='') {
      this.shortname = shortname;
      this.icon = icon;
      this.searchurl = searchurl;
      this.useNumbers = useNumbers;
      this.appendText = appendText;
      
      this.getHTML = function (query, episode) {
        var tShortname = this.shortname;
        var tIcon = this.icon;
        var tSearchURL = this.searchurl;
        var tUseNumbers = this.useNumbers;
        
        query = query.replace("'","");
        
        // Alter search or link parameters for special cases
        switch (query)
        {
          case "Tokyo Ghoul":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=tokyo+ghoul+horrible+480";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Attack on Titan":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=shingeki+no+kyojin+horrible+480";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Fairy Tail":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=fairy+tail+horrible+480";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Fairy Tail Zero":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=fairy+tail+zero+horrible+480";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Hunter x Hunter":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=hunter+horrible+480p";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "God Eater":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=god+eater+horrible+480p";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Magi: The Labyrinth of Magic":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=magi+hatsuyuki+480";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Naruto: Shippuuden":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=naruto+horrible+480p";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Boruto: Naruto Next Generations":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=boruto+horrible+480p";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "Kiseijuu":
            query = "";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=parasyte+horrible+480p";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          case "One Piece":
            query = "";
            //tSearchURL = "http://tracker.yibis.com/index.php";
            tUseNumbers = false;
            tSearchURL = "https://nyaa.si/?f=0&c=1_2&q=one+piece+horrible+480";
            tIcon = "http://anidb.net/favicon.ico";
            tShortname = "Anime";
            break;
          default:
            break;
        }
        
        // Add episode numbers if enabled
        if(tUseNumbers){
            query = query + " " + episode;
        }
        
        var html = "<a target=\"_blank\" href=\"" + tSearchURL;  
        html += escape(query);
        html += appendText;
        html += "\">";
  
        if (tIcon != "") {
          html += "<img width=\"14\" height=\"14\" border=\"0\" src=\"" + tIcon + "\" alt=\"" + tShortname + "\">";
        } else {
          html += tShortname;
        }
        html += "</a>";
        return html;
      }
  
      // Used for old EZTV site POST process
      this.getEZTVHTML = function (query) {
        var html = "<font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"-2\">" +
          "<form target=\"_blank\" action=\"https://eztv.ag/search/\" method=\"POST\" name=\"search\" id=\"search\">" +
          // "<script type=\"text/javascript\">function search_submit_form( obj ) { $( '#' + obj ).click(); return false; }</script>" +
          "<input type=\"submit\" value=\"Search\" name=\"search\" id=\"search_submit\" style=\"display: none;\" />" +
          "<input type=\"hidden\" name=\"SearchString1\" value=\""
        html += query;
        
        html += "\" /><a href=\"javascript:void(0);\" onclick=\"parentNode.submit()\">";
  
        if (this.icon != "") {
          html += "<img width=\"14\" heigth=\"14\" border=\"0\" src=\"" + this.icon + "\" alt=\"" + this.shortname + "\">";
        } else {
          html += this.shortname;
        }
        html += "</a></form></font>";
        return html;
      }
    }
    
    function addDownloadAllInOne(downloadURL) {
      WaitForState("div#serieswatch table span.shows").done(function() {
        // iterate through series table
        var seriesTable = $("div#serieswatch").children("table");
  
        // Create Download column
        seriesTable.find("tr.header").append("<td style=\"border-bottom: solid 1px black;\">Download</td>");
  
        // iterate through rows
        seriesTable.find("tr[class!=header]").each(function() {
          // Get series title
          var showTitle = $(this).find("span.shows").text();
  
          // Get episode number
          var episode = $(this).find("td b").first().text().trim();
  
          // Add download link to each episode
          $(this).append("<td>" + downloadURL.getHTML(showTitle, episode) + "</td>");
        });
      });
    }
    
    function addDownloadEpisodeList(downloadURL) {
      WaitForState("div#myepisodes_views table.mylist").done(function() {
        // iterate through series table
        var seriesTable = $("div#myepisodes_views table.mylist");
        
        // Create Download column
        seriesTable.find("tr.header").append("<th title=\"Download\">D</th>");
  
        // iterate through rows
        seriesTable.find("tr[class!=header]").each(function() {
          // Get series title
          var showTitle = $(this).find("td.showname a").text();
  
          // Get episode number
          var episode = "S" + $(this).find("td.longnumber").text().replace("x", "E");
  
          // Add download link to each episode
          $(this).append("<td>" + downloadURL.getHTML(showTitle, episode) + "</td>");
        });
      });
    }
  
    function addDownloadEpisodesByShow(downloadURL) {
      WaitForState("div#myepisodes_views table.mylist").done(function() {
        var showTitle = $("div.showname").next().text()
        
        // iterate through series table
        var seriesTable = $("div#myepisodes_views table.mylist");
        
        // Create Download column
        seriesTable.find("tr.header").append("<th title=\"Download\">D</th>");
  
        // iterate through rows
        seriesTable.find("tr.odd, tr.even").each(function() {
            // Get episode number
            var episode = "S" + $(this).find("td.longnumber").text().replace("x", "E");
  
            // Add download link to each episode
            $(this).append("<td>" + downloadURL.getHTML(showTitle, episode) + "</td>");
        });
      });
    }
  
    function WaitForState(query) {
      var dfd = $.Deferred();
      window.setTimeout(function() {AttemptResolve(query, dfd);}, 100); // Doesn't work without a short delay
      return dfd;
    }
  
    function AttemptResolve(query, dfd) {
      if (query === "" || $(query).length) {
       dfd.resolve();
      } else {
       window.setTimeout(function() {AttemptResolve(query, dfd);}, 100); // Try again in a little bit
      }
    }
    
    // --------------- downloadURL --------------- 
    var downloadURL = new Tracker("EZTV", "https://eztv.ag/favicon.ico", "https://eztv.ag/search/", false);
    var downloadURL2 = new Tracker("IPT", "https://ipt.lol/favicon.ico", "https://iptorrents.com/t?99=&q=", false, "#torrents");
    //var downloadURL = new Tracker("Kickass", "https://kastatic.com/images/favicon.ico", "https://kickass.to/usearch/?field=time_add&sorder=desc&q=ettv -720p -1080p ", false));
    // --------------- END OF downloadURL --------------- 
  
    if (window.location.href.indexOf("allinone") > -1) {
      addDownloadAllInOne(downloadURL);
      addDownloadAllInOne(downloadURL2);
    } else if (window.location.href.indexOf("epslist") > -1) {
      addDownloadEpisodeList(downloadURL);
    } else if (window.location.href.indexOf("show") > -1) {
      addDownloadEpisodesByShow(downloadURL);
    }
    
  })();