initial commit

This commit is contained in:
ksyasuda
2024-01-31 15:09:52 -08:00
commit 3a795699d9
8 changed files with 716 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
// ==UserScript==
// @match https://search.google.com/*
// ==/UserScript==
const meta = document.createElement("meta");
meta.name = "color-scheme";
meta.content = "dark light";
document.head.appendChild(meta);