Initial commit - tokiDownloader.user.js

This commit is contained in:
user01
2026-06-13 18:33:22 +09:00
commit 528cf73a34
385 changed files with 10847 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
(function () {
try {
var m = document.cookie.match(/(?:^|; )theme=([^;]+)/);
var t = m ? decodeURIComponent(m[1]) : "light";
if (t !== "dark" && t !== "light") t = "light";
document.documentElement.setAttribute("data-theme", t);
} catch (_) {}
})();