NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Flux cooldown bypass
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 0 cooldown?
// @author You
// @match https://flux.li/android/external/start.php?HWID=*
// @match https://flux.li/android/external/check1.php*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
const currentURL = window.location.href;
if (currentURL.startsWith('https://flux.li/android/external/start.php?HWID=')) {
window.location.href = 'https://linkvertise.com/580726/fluxus1';
}
else if (currentURL.startsWith('https://flux.li/android/external/check1.php')) {
window.location.href = 'https://linkvertise.com/580726/fluxus';
}
})();