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