/*
* @title バンブラPの試聴画面に音量変更ボタンを追加する
* @description バンブラPの試聴画面に音量変更ボタンを追加する。(Flash Playerを使用するブラウザでは動作しない。)
* @include http://9129suppon.com/music/*
* @license MIT License
*/
(function(){
var a="document.getElementById('musicPlayer').getElementsByTagName('audio')[0].volume";
var b=document.createElement('span');
b.style.cssText='position:relative;left:28px;';
b.innerHTML='<input type="button" value="10%" onclick="'+a+'=0.1">'
+'<input type="button" value="20%" onclick="'+a+'=0.2">'
+'<input type="button" value="30%" onclick="'+a+'=0.3">'
+'<input type="button" value="40%" onclick="'+a+'=0.4">'
+'<input type="button" value="50%" onclick="'+a+'=0.5">'
+'<input type="button" value="60%" onclick="'+a+'=0.6">'
+'<input type="button" value="70%" onclick="'+a+'=0.7">'
+'<input type="button" value="80%" onclick="'+a+'=0.8">'
+'<input type="button" value="90%" onclick="'+a+'=0.9">'
+'<input type="button" value="100%" onclick="'+a+'=1">';
document.getElementById('musicPlayer').appendChild(b);
})();