NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Loop WebM
// @namespace http://tvkdevelopment.com
// @author tvkanters
// @description Automatically makes WebM videos loop.
// @run-at document-start
// @include http://*.webm
// @include https://*.webm
// @include data:video/webm
// @include file:///*.webm
// ==/UserScript==
(function() {
var videos = document.getElementsByTagName("video");
for (i = 0; i < videos.length; ++i) {
videos[i].setAttribute("loop", "true");
}
})();