mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-14 10:52:47 +00:00
13 lines
369 B
JavaScript
13 lines
369 B
JavaScript
// ==UserScript==
|
|
// @name WhiteList
|
|
// @match https://archiveofourown.org/*
|
|
// @match https://canary.discord.com/*
|
|
// @match https://drop.lol/*
|
|
// @match https://mail.tutanota.com/*
|
|
// @match https://teddit.net/*
|
|
// ==/UserScript==
|
|
const meta = document.createElement('meta');
|
|
meta.name = "color-scheme";
|
|
meta.content = "dark light";
|
|
document.head.appendChild(meta);
|