十万洋兰 (@zhubaiwan-oozzxx) 在 豆包网页黑暗主题 中发帖
豆包网页有黑暗主题,但是页面上没有直接开启的方法,使用此油猴脚本强制开启黑暗主题。
// ==UserScript==
// @name 豆包网页版黑暗主题
// @description 豆包网页版全局强制黑暗主题
// @version 1.0
// @author doubao
// @match https://*.doubao.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(() => {
const raw = Element.prototype.setAttribute;
Element.prototype.setAttribute = function (key, val) {
if (th...