Hides chat on YouTube live streams by default
< 脚本YouTube Hide Chat by Default的反馈
Thanks! I added this change to the script, except I made it not use `includes` since I think that could result in some false positive clicks.
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Could work after correction of JS source.
Instead of
if (node.innerText === "HIDE CHAT" ) {
use
if (node.innerText.toUpperCase().includes("HIDE CHAT") ) {