NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Boosteroid // @description Make boosteroid session show in full screen, ignoring aspect ratio // @match *://cloud.boosteroid.com/static/streaming/streaming.html?session=* // @grant GM_getResourceText // @grant GM_addStyle // @version 1.1 // @updateURL https://openuserjs.org/meta/ayaMorita/Boosteroid.meta.js // @downloadURL https://openuserjs.org/install/ayaMorita/Boosteroid.user.js // @license MIT // @copyright 2023, ayaMorita (https://openuserjs.org/users/ayaMorita) // ==/UserScript== GM_addStyle(` video { width: 100%; height: 100%; object-fit: fill; } `)