Auto Close YouTube Ads

Close and/or Mute YouTube ads automatically!

< 脚本Auto Close YouTube Ads的反馈

提问/评论

§
发表于:2024-06-15

The cancel skip button was broken because of the if statement that checks to see if the preSkipButton element exists. This worked well until YT made a change where the textContent of skipText will initially be read as an empty string. Even though the element exists and it was able to get the textContent of it, the if statement following it will always return false because empty strings return false in JS.

To fix this, you can update the if statement inside the setupCancelDiv function on line 157 to if (skipText || skipText == "") {.

§
发表于:2024-06-15

To fix this, you can update the if statement inside the setupCancelDiv function on line 157 to if (skipText || skipText == "") {.

Minor correction, it should actually be if (skipText || skipText === "") { to ensure that it checks only for empty Strings.

发表回复

登录(不可用)以发表回复。

QingJ © 2025

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