>>/193/
> jquery
fuck
// UserScript
// @name endchan webm loop
// @namespace jkhsjdhjs
// @include http://endchan.xyz*
// @include https://endchan.xyz*
// @version 2
// @grant none
// /UserScript
function addLoopAttribute() {
document.querySelectorAll('video').forEach(function(v) {
v.setAttribute('loop', '');
})
}
if(document.readyState == 'complete') {
addLoopAttribute()
} else {
document.addEventListener('DOMContentLoaded', addLoopAttribute)
}