Last active
March 7, 2020 13:54
-
-
Save Doliman100/87eead98901a0a3791d627b5c3d016fe to your computer and use it in GitHub Desktop.
Скачивание заблокированных серий с lostfilm.tv без прокси.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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