您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Filters the guessthe.game previous games list to show only games you've finished in one guess. Use again to show all.
// ==UserScript== // @name Guessthe.game bragging rights filter // @namespace http://tampermonkey.net/ // @version 2024-07-17 // @description Filters the guessthe.game previous games list to show only games you've finished in one guess. Use again to show all. // @author You // @match https://guessthe.game/previous-games // @grant none // @run-at context-menu // @license none // ==/UserScript== (function() { 'use strict'; for (let element of document.getElementsByClassName('prev-game-result-row')) { if (element.style.display == 'none') element.style.display = 'flex'; else if (!element.children[1].children[0].classList.contains('success')) element.style.display = 'none'; } // Your code here... })();