Greasy Fork is available in English.

Fix Brave Bug for YouTube Live Chat

To Fix Brave Bug for YouTube Live Chat

ავტორი
𝖢𝖸 𝖥𝗎𝗇𝗀
დღიური ინსტალაციები
0
მთლიანი ინსტალაციები
328
რეიტინგი
3 0 0
ვერსია
3.27
შექმნილია
30.08.2023
განახლებულია
16.07.2024
ლიცენზია
MIT
გამოყენებს მათ

This is to fix the bug for Brave. (YouTube Live Chat)

Target User: Brave

See https://community.brave.com/t/youtube-live-chat-30-sec-delay/

Root Cause

YouTube calls "urlChanged" twice to set the iframe url. In the first attempt, chatframe.contentDocument is null. So it will set the src of the iframe. In the second attempt, chatframe.contentDocument is non-null. So it will set the url using chatframe.contentDocument.location.replace

Both Brave and Chrome will do these two attempts. Both attempts are just 10ms aparted.

The difference is, in brave, the first attempt affected the second attempt, but in chrome, the first attempt would not affect the second attempt.

Details in Github issue#25694