您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes Lightmode/Darkmode Background leftover from copy & pasting when on the other Mode
// ==UserScript== // @name Fix Light/Dark Mode Formatting // @namespace http://tampermonkey.net/ // @version 2025-08-17-0 // @description Removes Lightmode/Darkmode Background leftover from copy & pasting when on the other Mode // @author gaylie // @match https://xcreativeclashx.net/* // @exclude https://xcreativeclashx.net/forums/topic/*/?do=edit* // @exclude https://xcreativeclashx.net/submissions/*/*/?do=form* // @icon https://www.google.com/s2/favicons?sz=64&domain=xcreativeclashx.net // @grant none // @run-at document-start // @license GNU AGPLv3 // @require https://code.jquery.com/jquery-3.6.0.min.js // ==/UserScript== $(document).ready(function() { var colorcodes = { lightHex: "#c6dfe1", lightRGB: "rgb(198,223,225)", darkHex: "#2d3037", darkRGB: "rgb(45,48,55)", darkHexAU: "#30333b", darkRGBAU: "rgb(48,51,59)", } for (let key in colorcodes) { var style = '[style*="background-color:' + colorcodes[key] + '"]'; $('.cPost_contentWrap '+style).css({"background-color": "", "color": ""}); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址