igo User

For a quick fix:

Find these lines:

data.spy = report.querySelector('a[onclick*="sendShipsWithPopup"]').getAttribute('onclick');
data.attack = report.querySelector('.icon_attack').closest('a').href;

and replace with this

data.spy = report.querySelector('button[onclick*="sendShipsWithPopup"]').getAttribute('onclick');
data.attack = report.querySelector('.msgAttackBtn').closest('button').href;