var presence = new Presence({ clientId: "811572600294735902" }); var browsingStamp = Math.floor(Date.now() / 1000); var title: any; var search: any; presence.on("UpdateData", async () => { const presenceData: PresenceData = { largeImageKey: "logo" }; if (document.location.hostname == "marktplaats.nl") { if (document.location.pathname.includes("/my-account/sell/")) { title = "test" presenceData.details = "Viewing my sales!"; presenceData.state = title.innerText; } else if (document.location.pathname == "/") { presenceData.details = "Viewing the homepage"; } } if (presenceData.details == null) { presence.setTrayTitle(); presence.setActivity(); } else { presence.setActivity(presenceData); } });