Files
youtube-app/browser_extension/api/background.js
Marek Lenczewski ca988345e9 update
2026-04-07 17:55:30 +02:00

10 lines
259 B
JavaScript

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