Greasy Fork

SSE Warning

Adds a warning to Nexusmods' Skyrim page to remind me to download mods for the right fucking game.

当前为 2021-05-01 提交的版本,查看 最新版本

// ==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.
// ==/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);