// ==UserScript== // @name TheVR load custom style // @namespace https://forum.thevr.hu // @version 0.1 // @description TheVR load custom style // @author Script: vazee00(Buda), style css: Stein-Sama // @match https://forum.thevr.hu/* // @grant none // ==/UserScript== var loadTheVRCustomStyle = (function () { var styleUrl = "https://userstyles.org/styles/userjs/143392/thevr-f-rum-night-mode.user.js", createScript = function () { var customScript = document.createElement("script"); customScript.src = styleUrl; return customScript; }; this.init = function () { document.head.appendChild(createScript()); }; }); var vrCStyle = new loadTheVRCustomStyle(); vrCStyle.init();