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