// ==UserScript== // @name SSE Warning // @namespace SSE Warning // @match https://www.nexusmods.com/skyrim // @match https://www.nexusmods.com/skyrim/* // @grant none // @version 1.0 // @author Lexie // @description Adds a warning to Nexusmods' Skyrim page to remind me to download mods for the right fucking game. // @downloadURL none // ==/UserScript== var elm = document.createElement("div"); elm.style.fontWeight = "bold"; elm.style.backgroundColor = "#181818"; elm.style.textAlign = "center"; var a = document.createElement("a"); a.href = "https://www.nexusmods.com/skyrimspecialedition"; a.style.color = "red"; a.style.textDecoration = "underline"; a.style.fontSize = "xxx-large" a.innerHTML = "🚨🚨🚨 Are you looking for a Skyrim Special Edition mod? 🚨🚨🚨"; $('#head')[0].appendChild(elm); elm.appendChild(a);