Automatically loops and mutes video files.
Fra
// ==UserScript==
// @name Mute Loops
// @namespace idunnolol
// @version 1.2.1
// @description Automatically loops and mutes video files.
// @author idunnolol
// @author segito10
// @author WhatIsThisImNotGoodWithComputers
// @include *.webm*
// @include *.mp4*
// @include *r34i.paheal-cdn.net*
// @license GPL
// ==/UserScript==
const videos= [...document.getElementsByTagName('video')];
videos.forEach((video) => { video.loop = true });
videos.forEach((video) => { video.muted = true });
void 0;