// ==UserScript== // @name DarkMode Disable // @match https://monkeytype.com/* // @match https://nc.cronyakatsuki.xyz/* // @match https://company-mode.github.io/* // ==/UserScript== const meta = document.createElement("meta"); meta.name = "color-scheme"; meta.content = "dark light"; document.head.appendChild(meta);