NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name геткус скачть // @namespace http://tampermonkey.net/ // @version 0.1 // @description ыыыыы // @author Bagdaulet // @match https://player02.getcourse.ru/player/ // @include *//*.getcourse.ru/* // @icon https://www.google.com/s2/favicons?domain=getcourse.ru // @grant none // @license MIT // @run-at document-end // @updateURL https://openuserjs.org/meta/eto.ia.samgmail.com/геткус_скачть.meta.js // ==/UserScript== (function() { 'use strict'; let playerEl = document.querySelector('video'); let m3u8 = playerEl.dataset.master.split('?')[0]; let m3u8encoded = encodeURIComponent(m3u8).split('%').join('%25'); let link = `https://youtube4kdownloader.com/download/video/${m3u8encoded}`; let downloadButton = document.createElement("a"); downloadButton.setAttribute('href', link); downloadButton.setAttribute('target', '_blank'); downloadButton.innerText = 'Скачать видео'; downloadButton.style.cssText = 'position: fixed;top: 20px;left: 50px;padding: 15px;background: greenyellow;border-radius: 5px;' 'position: fixed;top: 20px;left: 50px;padding: 15px;background: greenyellow;border-radius: 5px;'; document.body.appendChild(downloadButton); })();