虾米 HTML5 音量

给虾米 HTML5 版添加 音量 调节

// ==UserScript==
// @name       虾米 HTML5 音量
// @namespace  
// @version    0.1
// @description  给虾米 HTML5 版添加 音量 调节
// @match      http://www.xiami.com/radio/*
// @copyright  2012+, G yc
// ==/UserScript==

var div = document.getElementById("radioHTML5");
var input = document.createElement("input");
input.id = "volume";
input.type = "range";
input.min = "0";
input.max = "10";
input.value = "5";
input.onchange = function () {
    document.getElementById("audio").volume = document.getElementById("volume").value / 10;
};
div.appendChild(input);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址