Files
youtube-app/browser_extension/background.js
Marek Lenczewski 8ecef00d0a update
2026-04-06 10:42:29 +02:00

10 lines
261 B
JavaScript

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(() => {});
});