flyink13 / AutoPlay thwglobal

// ==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(); // Жмем по первой ссылке сбоку
        });
});