Files
youtube-app/browser_extension/background.js
2026-04-05 14:54:10 +02:00

10 lines
259 B
JavaScript

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