How to use #1
- Open https://my.tomorrowland.com/shop/worldwidepresale page
- Open developer console:
- Right click on page -> Inspect -> Console
- MacOS Cmd + Option + J
- Windows Alt + Shift + J
- Paste these {code} and press Enter
window.open(document.querySelector('iframe').src);
- Open developer console on that new window
- Paste these {code} and press Enter
var INJECT_SCRIPT = document.createElement('script');
INJECT_SCRIPT.src = 'https://gebeto.github.io/info/tomorrowland/checker.js';
document.body.appendChild(INJECT_SCRIPT);
How to use #2
- Open https://my.tomorrowland.com/shop/worldwidepresale page
- Open developer console:
- Right click on page -> Inspect -> Console
- MacOS Cmd + Option + J
- Windows Alt + Shift + J
- Paste these {code} and press Enter
getJSON = function(url, successhandler)
{
// var version = Math.floor(new Date().getTime() / 5000);
var version = Math.floor(new Date().getTime() / 100);
var request = new XMLHttpRequest();
request.open('GET', url + "?" + version, true);
request.onload = function() {
if (request.status >= 200 && request.status < 400) {
successhandler(JSON.parse(request.responseText));
}
};
request.send();
};
setInterval(fn60sec, 200);