Auto Clicking >:)

Auto Skip Waiting

/* global $ */
// ==UserScript==
// @name         Auto Clicking >:)
// @version      1
// @description  Auto Skip Waiting
// @author       Vietkhanh Bean (fb.com/vietkhanhbean)
// @match        https://www.ha-lab.com/redirect.html
// @match        https://dc4u.eu/redirect.html
// @grant        none
// @namespace https://greasyfork.org/users/188746
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $('#Redirect').get(0).click();
})();