Skip to content

Instantly share code, notes, and snippets.

@Doliman100
Last active March 7, 2020 13:54
Show Gist options
  • Select an option

  • Save Doliman100/87eead98901a0a3791d627b5c3d016fe to your computer and use it in GitHub Desktop.

Select an option

Save Doliman100/87eead98901a0a3791d627b5c3d016fe to your computer and use it in GitHub Desktop.
Скачивание заблокированных серий с lostfilm.tv без прокси.
// ==UserScript==
// @name Unblock lostfilm.tv
// @description Скачивание заблокированных серий с lostfilm.tv без прокси.
// @version 1.1.0
// @namespace https://gist.github.com/Doliman100
// @updateURL https://gist.github.com/Doliman100/87eead98901a0a3791d627b5c3d016fe/script.user.js
// @icon https://lostfilm.tv/favicon.ico
// @match *://*.lostfilm.tv/series/*
// @grant none
// ==/UserScript==
"use strict";
document.querySelectorAll(".external-btn2").forEach(function(btn)
{
btn.onclick = () => PlayEpisode(btn.closest(".left-pane, tr, .movie-details-block").querySelector(".isawthat-btn, .haveseen-btn").getAttribute("data-episode"));
btn.className = "external-btn";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment