else/Javascript/loopplayall.js
Ethan Dalool b4ca46a165 Add undefined to all bookmarklets for firefox compatibility.
On Firefox, clicking a bookmarklet will cause the page to display
the last return value of the bookmarklet, deleting the rest of the
page contents. The solution is to add undefined; at the end.
2020-08-12 13:54:09 -07:00

3 lines
117 B
JavaScript

javascript:
Array.from(document.getElementsByTagName("Video")).forEach(function(e){e.loop=true;e.play()})
undefined;