feat(desktop): add more config options for qutebrowser.

This commit is contained in:
CronyAkatsuki 2025-06-06 16:23:00 +02:00
parent e83d05f265
commit 6a169af344
5 changed files with 219 additions and 77 deletions

View file

@ -0,0 +1,16 @@
// ==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/*
// @match https://192.168.100:8006/*
// @match https://proxmox.me:8006/*
// ==/UserScript==
const meta = document.createElement("meta");
meta.name = "color-scheme";
meta.content = "dark light";
document.head.appendChild(meta);