Подскажите как реализовать воспроизведение mp3 в popup окошке расширения.
Пытаюсь воспроизводить таким образом:
function PlaySound(surl) {
document.getElementById("soundspan").innerHTML=
"<embed src='"+surl+"' hidden=true autostart=true loop=false>";
}
<span id=soundspan></span>
<form>
<input type="button" value="Play" onClick="PlaySound('strawberry_fields.mp3')">
</form>
но дебаггер выдает следующее:
"Refused to execute inline event handler because it violates the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:"."
Через флеш mp3 тоже не воспроизводится так как необходимо воспроизводить файл с другого домена, флеш такое не разрешает.