const SERVER_URL = "http://marha.local:8000/videos"; browser.runtime.onMessage.addListener((videos) => { fetch(SERVER_URL, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(videos), }).catch(() => {}); });