When someone is hosting a tournament and the players have twitch delay that keeps varying, it's tricky for them to set the tracker delay properly. We could help mitigate this by making an extension that gets the twitch delay and then getting that info out to the tracker somehow.
to get the delay, we can use document.getElementsByClassName("js-stat-hls-latency-broadcaster");
to get it to the tracker, options include
- send it to our tracker server and let the tracker client retrieve it
- write to localstorage and let the tracker read it from there
- use chrome's "native messaging"
When someone is hosting a tournament and the players have twitch delay that keeps varying, it's tricky for them to set the tracker delay properly. We could help mitigate this by making an extension that gets the twitch delay and then getting that info out to the tracker somehow.
to get the delay, we can use document.getElementsByClassName("js-stat-hls-latency-broadcaster");
to get it to the tracker, options include