Replace "viewed" with "download" button

Add download button to new lostfilm.tv interface

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Replace "viewed" with "download" button
// @namespace   [email protected]
// @description Add download button to new lostfilm.tv interface
// @include     http://www.lostfilm.tv/new/*
// @include     https://www.lostfilm.tv/new/*
// @include     http://www.lostfilm.tv/new
// @include     https://www.lostfilm.tv/new
// @version     4
// @grant       none
// ==/UserScript==
var serials = document.getElementsByClassName("text-block serials-list")[0];
var episodes_list = serials.getElementsByClassName("row");

for (var i in episodes_list) {
  var series = episodes_list[i].getElementsByClassName("thumb")[0].src.match(/\/(\d+)\//)[1];
  var season_episode = episodes_list[i].getElementsByClassName("comment-blue-box")[0].href.match(/season_(\d+)\/episode_(\d+)/);
  var season = season_episode[1];
  var episode = season_episode[2];
  
  // <div title="" class="external-btn" onClick="PlayEpisode('299','1','6')"></div>
  var button = document.createElement("div");
  button.setAttribute("class", "haveseen-btn");
  button.setAttribute("title", "Download episode");
  button.setAttribute("style", "border: 2px solid #ff3c2d; top: 39px; background: #ff3c2d url(\"/vision/external-link-btn3.png\") repeat scroll center center;")
  button.setAttribute("onClick", "PlayEpisode('" + series + ("00" + season).slice(-3) + ("00" + episode).slice(-3) + "')");
  episodes_list[i].appendChild(button);
}