feat(desktop): add more config options for qutebrowser.
This commit is contained in:
parent
e83d05f265
commit
6a169af344
5 changed files with 219 additions and 77 deletions
|
@ -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);
|
Loading…
Add table
Add a link
Reference in a new issue