1const startUrl = "https://www.bancsabadell.com/bsnacional/en/personal/login/";
2const homeUrl = "https://www.bancsabadell.com/txbs/LoginDNISCA.setLogged.bs";
3const transactionsUrl =
4 "https://www.bancsabadell.com/txbs/SVBridge.initTransactions.bs";
5
6function fromHomeToTransactions() {
7 if (window.location.href.startsWith(homeUrl)) {
8 window.location.href = transactionsUrl;
9 }
10}
11
12window.onload = function () {
13 console.log(
14 "JavaScriptNavigator: selecting action for " + window.location.href,
15 );
16
17 if (window.location.href === startUrl) {
18 setInterval(fromHomeToTransactions, 1000);
19 }
20 fromHomeToTransactions();
21};
22