Guessthe.game bragging rights filter

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...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址