So if I have lorenipsum.com/test.mp4, can I modify it like so: lorenipsum.com/test.mp4?&loop=1 or some other append to make it loop?
So if I have lorenipsum.com/test.mp4, can I modify it like so: lorenipsum.com/test.mp4?&loop=1 or some other append to make it loop?
I wrote a quick bookmarklet for you:
javascript: (() => document.querySelectorAll("video").forEach(video => video.loop = true))();
You can paste this into the URL bar (and press Enter to apply) or add it as a bookmark (and apply by clicking on the bookmark), it will make all video elements on the page loop automatically. Caveats: