pls help me with adding sound notification to my TamperMonkey script, i trying many ways, but can't understand how to make it work. Site where i'm test it: https://p2p.binance.com/ru/trade/all-payments/RUB?fiat=RUB
// ==UserScript==
// @name Binance Helper
// @namespace https://p2p.binance.com/ru/trade/*
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://p2p.binance.com/ru/trade/all-payments/RUB?fiat=RUB
// @require http://code.jquery.com/jquery-3.4.1.min.js
// @icon https://www.google.com/s2/favicons?sz=64&domain=pogrommist.ru
// @grant none
// ==/UserScript==
const mySound = new Audio("https://audio.code.org/win3.mp3");
const myinterval = window.setInterval(function() {
$(".css-1m1f8hn").each((i, value) => {
if (parseFloat($(value).html()) < 1.06) {
$(value).css("border", "3px solid red")
mySound.play()
return false;
}
});
}, 3000); // 1