Enable the 'Continue to my account' button after Gixen login without waiting 20 seconds.
// ==UserScript== // @name Gixen Nag Screen - enable bypass // @namespace http://tampermonkey.net/ // @version 1.1 // @description Enable the 'Continue to my account' button after Gixen login without waiting 20 seconds. // @author Originally Danny Smith <[email protected]> // @match https://www.gixen.com/home_2.php?sessionid=* // @match https://www.gixen.com/main/home_2.php?sessionid=* // @match https://www.gixen.com/main/home_2.php // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; document.getElementById('gbutton').disabled = false; document.getElementById("gbutton").dispatchEvent(new MouseEvent('click')); })();