1const homeUrl = "https://app.revolut.com";
2const allAccountsUrl = "https://app.revolut.com/transactions/";
3
4const fromHomeToAllAccounts = () => {
5 if (window.location.href === homeUrl) {
6 window.location.href = allAccountsUrl;
7 }
8};
9
10window.onload = function () {
11 console.log("Mobile onload - URL: " + window.location.href);
12
13 setInterval(fromHomeToAllAccounts, 1000);
14
15 fromHomeToAllAccounts();
16};
17