您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Chrome dark theme messes up the new message indicator color. Make it orange instead! Also added some fixes like moving search pagination to top of the search (where it should be).
当前为
// ==UserScript== // @name Discord (Chrome Dark Theme Fixes) // @version 1.0 // @description Chrome dark theme messes up the new message indicator color. Make it orange instead! Also added some fixes like moving search pagination to top of the search (where it should be). // @author Threeskimo // @match https://discord.com/* // @icon https://www.freepnglogos.com/uploads/discord-logo-png/discord-logo-logodownload-download-logotipos-1.png // @require https://code.jquery.com/jquery-3.6.0.min.js // @license MIT // @namespace https://gf.qytechs.cn/users/695986 // ==/UserScript== var $app = false; var dostuff = function() { //Assign orange indicator (and orange channel names) for new messages $('[class^=item-2LIpTv]').css({"background-color": "orange", 'color': 'white'}); $('[class^=unread-]').css({"background-color": "orange", 'color': 'white'}); $('[class^=unread-] + div > a > [class^=name] > [class^=channelName]').css('color', 'orange'); //Move Search pagination to top of search $('[class^=pageControl-]').prependTo('[class*=thin-]:eq(1)'); $('[class^=pageControl-]:not(:last)').remove(); }; setInterval(dostuff, 1000); // call every 1000 milliseconds
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址