您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Works for both desktop and mobile
// ==UserScript== // @name Auto Dark Mode for Gemini // @namespace http://tampermonkey.net/ // @version 0.2 // @description Works for both desktop and mobile // @author Avi (https://avi12.com) // @copyright 2025 Avi (https://avi12.com) // @license MIT // @match https://gemini.google.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gemini.google.com // @grant none // ==/UserScript== (function () { "use strict"; /** * @param theme {"dark" | "light"} */ function setTheme(theme) { document.body.classList.value = document.body.classList.value.replace(/(light|dark)-theme/, `${theme}-theme`); const storageItem = { light: "Light", dark: "Dark" }; localStorage.setItem("Bard-Color-Theme", `Bard-${storageItem[theme]}-Theme`); } new MutationObserver((_, observer) => { const elMenuButton = document.querySelector("[data-test-id=side-nav-menu-button]"); if (!elMenuButton) { return; } observer.disconnect(); const darkQuery = matchMedia("(prefers-color-scheme: dark)"); setTheme(darkQuery.matches ? "dark" : "light"); darkQuery.addEventListener("change", e => setTheme(e.matches ? "dark" : "light")); }).observe(document, {childList: true, subtree: true}); })();