Files
youtube-app/browser_extension/api/background.js
Marek Lenczewski 1ca4371ea0 release browser app
2026-04-15 22:37:53 +02:00

10 lines
304 B
JavaScript

const SERVER_BASE = "https://youtube.marha.de";
browser.runtime.onMessage.addListener(({ profileId, video }) => {
fetch(`${SERVER_BASE}/profiles/${profileId}/videos`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(video),
}).catch(() => {});
});