I listen to audio book summaries every weekday on instaread.co
Currently, I use a userscript in the Min web browser to play the audio at 1.25. This makes the narrator sound much better. The UI on instaread.co has a speed setting, but it does not remember my preferred speed day to day.
I only want the speed increase active on instaread.co, as I use pocketcasts.com to play podcasts, and I do not want to change their speed.
I'd love to be able to do this in Orion. Either natively, or as a userscript.
Here is the userscrript, in case it helps:
(() => {
var rate = 1.25;
var init = () =>
[...document.querySelectorAll('audio')].map((e) => {
if (!e.flag_speed_inited) {
e.playbackRate = rate;
console.debug(e, 'SPEED_X', rate);
e.flag_speed_inited = 1;
}
});
setInterval(init, 10000);
window.addEventListener('load', init, false);
init();
})();