Chrome 拡張機能のバックグラウンド ページでオーディオ タグの音量を制御したいと考えています。メディアはうまく再生されますが、デフォルトでは音量があります (1 => 最大だと思います) が、音量を変更できます。
をする方法知ってますか ?
Background.html:
<!doctype html>
<html>
<head>
</head>
<body>
<audio src="http://radio-contact.ice.infomaniak.ch/radio-contact-high.mp3" id="radio"
autoplay="true" oncanplay="document.getElementById('radio').volume = 0.1">
</audio>
</body>
</html>
さらに、それを制御するために popup.html に Pause/Volume+/Volume- ボタンが必要です。chrome.extension.getBackgroundPage() を試しましたが、制御できません。
ありがとう