Simple Dark Theme style for any website which you can configure per-site
< 脚本Universal Dark Theme Maker的反馈
you mean this to auto-enable controls on videos?
var currentVideo;
document.onmouseover = function(e){
if (e.target.tagName == 'VIDEO' && e.target != currentVideo){
currentVideo = e.target;
e.target.setAttribute("controls", true);
e.target.parentNode.parentNode.removeAttribute("target");
e.target.parentNode.parentNode.href = "javascript: void(0)";
if(e.target.nextElementSibling.className == "sound-toggle off")
{
e.target.nextElementSibling.remove();
}
}
};
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
do u mind sharing video hover javascript in u javascript section?