Project Free Tv - skip waiting Ads (free-tv-video-online.info)

Skips the 10 second waiting ads when transitioning to player on free-tv-video-online.info by converting links

< Feedback on Project Free Tv - skip waiting Ads (free-tv-video-online.info)

Review: OK - script works, but has bugs

§
Posted: 30.06.2015
Edited: 08.07.2015

Simplified Update

// ==UserScript==
// @name         Project Free Tv - skip waiting Ads (free-tv-video-online.info)
// @version      0.4
// @description  Skips the 10 second waiting ad page when transitioning to player
// @author       manni
// @author       Tom Anderson <tom.h.anderson@gmail.com>
// @match        *://www.free-tv-video-online.info/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// @require http://cdnjs.cloudflare.com/ajax/libs/purl/2.3.1/purl.min.js
// @namespace https://greasyfork.org/users/9751
// ==/UserScript==

$(function() {
    $('td.mnllinklist a').each(function(index, node) {
        $(node).attr('href', purl($(node).attr('href')).param('lnk'));
    });
});

Post reply

Sign in to post a reply.