Greasy Fork is available in English.

Mute Peacock Ads

Mutes ads on Peacock

< 脚本Mute Peacock Ads的反馈

提问/评论

§
发表于:2024-05-08

your mute was also not working for me. Didn't follow your logic exactly, but tweaked it to something similar that works for me

setInterval(function(){
var adCountdown = document.querySelector('.ad-countdown__remaining-time')
var muteButton = document.querySelector('button.playback-button[aria-label="Mute Sound"]')
var unmuteButton = document.querySelector('button.playback-button[aria-label="Unmute Sound"]')

if(adCountdown === null & unmuteButton != null){
unmuteButton.click()
}
if(adCountdown != null & muteButton != null){
muteButton.click()
}
}, 1000)

mmcev106作者
§
发表于:2024-05-08

I'm guessing they updated their player and the old code just didn't make sense anymore. I just posted your update. Thanks!

发表回复

登录以发表回复。