I miss the programmable web (2021)
matt-rickard.com
I miss the programmable web (2021)
1–10 of 180 posts
Re: I miss the programmable web (2021)
#2Re: I miss the programmable web (2021)
#3Re: I miss the programmable web (2021)
#4 javascript:(function() { (document.querySelector('video') || document.querySelector('audio')).playbackRate = (+prompt('How many times normal speed?') || 1); })();Re: I miss the programmable web (2021)
#5Re: I miss the programmable web (2021)
#6My most used bookmark is this, for speeding up the first audio or video element on the page. I suppose that's if you don't count me typing 'n' and auto-completing my way to hacker news. javascript:(function() { (document.querySelector('video') || document.querySelector('audio')).playbackRate = (+prompt('How many times normal speed?') || 1); })();
Re: I miss the programmable web (2021)
#7Re: I miss the programmable web (2021)
#8How did these user scripts work? I don't get how they could be "blocked" now. I've made my own snippets of JS to run on certain sites before.
It added a substantial amount of complexity but it wasn't insurmountable. The scripts he talks about sound like there's stuff I'd have to sub in a shell script or use a two stage process to do, as there is some post-download processing I'd like to do automatically, but there's no way for me to access my OS from the sandbox of Firefox (I mean, for good reason, although it would be nice if I could override that in some cases)