You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Works amazingly in 95% of cases. The 5% of cases it doesn't work in are YouTube and Twitch streams (it will constantly try to skip ahead if there's dead air but since it's live, the audio just sounds like the stream is skipping a bunch). If you could blacklist specific sites to not run it on(kinda like how uBlock Origin does) the issue with Twitch would be fixed, not sure how YouTube live streams could be handled though. I'd assume YouTube uses the same video player for both streams/videos so differentiating between a stream and video may be impossible for the developer but idk.
EDIT: It seems the developer is aware of people wanting to blacklist sites as there have been suggestions for this feature on the extension's repo; however, it seems that Firefox makes it more complicated to do than Chrome.
The way I see it is some users don't want to be bothered constantly toggling the extension on and off manually, so I thought that perhaps it would make sense to add a on-by-default feature to set playbackRate to 1 and stop skipping if we're near the end of the video (by comparing video.duration and video.currentTime).
It should still be skipping if we're not near the end of a live stream I suppose.
And I suppose some refactoring might be required. Because we probably don't want to do this by actually changing the settings back and forth. Instead we want to override the sounded speed and volume threshold when passing it to a ElementPlaybackController.
This was raised in this review:
The way I see it is some users don't want to be bothered constantly toggling the extension on and off manually, so I thought that perhaps it would make sense to add a on-by-default feature to set
playbackRate
to 1 and stop skipping if we're near the end of the video (by comparingvideo.duration
andvideo.currentTime
).It should still be skipping if we're not near the end of a live stream I suppose.
And I suppose some refactoring might be required. Because we probably don't want to do this by actually changing the settings back and forth. Instead we want to override the sounded speed and volume threshold when passing it to a
ElementPlaybackController
.Workarounds
The text was updated successfully, but these errors were encountered: