// ==UserScript== // @name 强制开启花瓣搜索(PetalSearch)浅色模式 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 强制在华为的花瓣搜索(PetalSearch)启用浅色模式 // @author ITXiaoPang // @match https://petalsearch.com/* // @icon https://www.google.com/s2/favicons?domain=petalsearch.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.body.classList.remove('dark'); })();