Add all qutebrowser config files.

This commit is contained in:
CronyAkatsuki 2023-11-28 09:24:19 +01:00
parent c1f43386ae
commit f83803c938
5 changed files with 224 additions and 0 deletions

View file

@ -0,0 +1,11 @@
// ==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);