NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name AutoPlay thwglobal // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author FlyInk13 // @match http://www.thwglobal.com/videocenter/* // @grant none // ==/UserScript== window.addEventListener("load",function(){ // Ждем загрузки jwplayer("videoContainer").play() // Проигрываем видео .on('beforeComplete',function(){ // Как проиграли document.querySelector('#MoreVideoStats a').click(); // Жмем по первой ссылке сбоку }); });