gentoo-dots/.config/qutebrowser/greasemonkey/darkmode-disable.js

12 lines
319 B
JavaScript
Raw Normal View History

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/*
// ==/UserScript==
const meta = document.createElement("meta");
meta.name = "color-scheme";
meta.content = "dark light";
document.head.appendChild(meta);