const SERVER_BASE = "https://youtube.marha.de"; browser.runtime.onMessage.addListener(({ profileId, video }) => { fetch(`${SERVER_BASE}/profiles/${profileId}/videos`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(video), }).catch(() => {}); });