Created
May 14, 2025 12:53
-
-
Save mandarinx/85927a3aa646ae66ff0f1d88c54cc4ff to your computer and use it in GitHub Desktop.
Titled Tuesday score table widener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Fix Titled Tuesday table | |
// @description Wides the table | |
// @version 1 | |
// @match *://www.chess.com/tournament/live/* | |
// @include https://www.chess.com/tournament/live/* | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const main_el = document.querySelector('main.layout-component'); | |
main_el.style.cssText = 'grid-template-columns: 90rem 30rem;'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment