开启豆包网页版隐藏的深色模式,并跟随系统
// ==UserScript==
// @name 豆包自动深色模式
// @namespace http://tampermonkey.net/
// @version 2025-08-24
// @description 开启豆包网页版隐藏的深色模式,并跟随系统
// @author alikia2x
// @match https://*.doubao.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function detectColorScheme() {
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
return 'dark';
}
return 'light';
}
function setDataTheme(theme) {
document.documentElement.setAttribute('data-theme', theme);
}
setInterval(() => setDataTheme(detectColorScheme()), 16);
})();