Don't loop offtiktok videos
// ==UserScript==
// @name Offtiktok No Loop
// @version 0.1
// @description Don't loop offtiktok videos
// @author shellster
// @license MIT
// @match *://www.offtiktok.com/*
// @namespace https://greasyfork.org/en/users/316827
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('video').forEach(function(node) { node.removeAttribute("loop") });
})();