dotfiles/qutebrowser/greasemonkey/white.js

13 lines
360 B
JavaScript
Raw Normal View History

2022-01-13 15:36:39 +00:00
// ==UserScript==
// @match
// @match https://archiveofourown.org/*
// @match https://canary.discord.com/*
2022-01-13 15:36:39 +00:00
// @match https://drop.lol/*
// @match https://mail.tutanota.com/*
// @match https://teddit.net/*
2022-01-13 15:36:39 +00:00
// ==/UserScript==
const meta = document.createElement('meta');
meta.name = "color-scheme";
meta.content = "dark light";
document.head.appendChild(meta);