2023-11-28 09:24:19 +01:00
|
|
|
// ==UserScript==
|
|
|
|
// @name DarkMode Disable
|
|
|
|
// @match https://monkeytype.com/*
|
|
|
|
// @match https://nc.cronyakatsuki.xyz/*
|
|
|
|
// @match https://company-mode.github.io/*
|
2024-01-08 15:56:58 +01:00
|
|
|
// @match https://adventofcode.com/*
|
|
|
|
// @match https://cronyakatsuki.xyz/qbt/*
|
|
|
|
// @match https://www.keybr.com/*
|
2023-11-28 09:24:19 +01:00
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
const meta = document.createElement("meta");
|
|
|
|
meta.name = "color-scheme";
|
|
|
|
meta.content = "dark light";
|
|
|
|
document.head.appendChild(meta);
|