Files
UniversalMusicPlayer/add-on/background.js
Markil3 704ab06f85 Adds some integration with firefox.
This is still rather unstable, but it runs.
2021-07-11 23:33:39 -06:00

29 lines
511 B
JavaScript

var port = browser.runtime.connectNative("universal_music")
/**
* Sends a message to the application
*/
function writeMessage(message)
{
port.postMessage(message)
}
/**
* Sends a message to the application
*/
function onAppMessage(message)
{
if ("command" in message)
{
switch (message["command"])
{
case "ping":
writeMessage({
"response": "ping"
});
break
}
}
}
port.onMessage.addListener(onAppMessage);