17 lines
505 B
JavaScript
Raw Normal View History

2024-06-20 17:26:20 +02:00
// ==UserScript==
// @name DarkMode Disable
// @match https://monkeytype.com/*
// @match https://nc.cronyakatsuki.xyz/*
// @match https://company-mode.github.io/*
// @match https://adventofcode.com/*
// @match https://cronyakatsuki.xyz/qbt/*
// @match https://www.keybr.com/*
2024-12-25 21:06:09 +01:00
// @match https://192.168.100:8006/*
// @match https://proxmox.me:8006/*
2024-06-20 17:26:20 +02:00
// ==/UserScript==
const meta = document.createElement("meta");
meta.name = "color-scheme";
meta.content = "dark light";
document.head.appendChild(meta);