FilesPayout Timer skip

skip timer on FilesPayout

// ==UserScript==
// @name         FilesPayout Timer skip
// @namespace    http://tampermonkey.net/
// @version      2024-11-23
// @description  skip timer on FilesPayout
// @author       Serbian_Fantom
// @match        https://filespayout.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=filespayout.com
// @grant        none
// @license community
// ==/UserScript==

(function() {
    'use strict';
    $('.downloadbtn').attr('disabled', false);
})();