1
0
mirror of https://gitlab.com/ceda_ei/google-meet-captions-regex synced 2025-07-06 00:36:51 +02:00
Ceda EI 33fcf0ab21 Move match actions to background.js.
Send notifications and play audio via message passing.
2020-09-20 12:35:43 +05:30

14 lines
326 B
JavaScript

function handleMatch(match) {
new Notification("Match found", {body: match});
const audio = new Audio(browser.runtime.getURL("static/notif.mp3"));
audio.play();
}
function handleMessage(request) {
if (request.type == "match")
return handleMatch(request.match);
}
browser.runtime.onMessage.addListener(handleMessage);