10 lines
303 B
JavaScript
10 lines
303 B
JavaScript
const SERVER_BASE = "http://marha.local:8000";
|
|
|
|
browser.runtime.onMessage.addListener(({ profileId, video }) => {
|
|
fetch(`${SERVER_BASE}/profiles/${profileId}/videos`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify(video),
|
|
}).catch(() => {});
|
|
});
|