您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Having the available letters be darker than the used ones on the keyboard confuses me - so this flips the colors.
// ==UserScript== // @name Wørdle flip dark-mode colors // @namespace http://mathemaniac.org/ // @version 1.0.0 // @description Having the available letters be darker than the used ones on the keyboard confuses me - so this flips the colors. // @match https://xn--wrdle-vua.dk/ // @copyright 2022, Sebastian Paaske Tørholm // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; document.head.insertAdjacentHTML('beforeend', ` <style> .dm .keyboard-row>button { background-color: #888 !important; } .dm .keyboard-row>button.absent { background-color: #333 !important; } .dm .keyboard-row>button.match { background-color: #019e01 !important; } .dm .keyboard-row>button.present { background-color: #eb6f0a !important; } </style> `);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址