Skip to content

Instantly share code, notes, and snippets.

@mandarinx
Created May 14, 2025 12:53
Show Gist options
  • Save mandarinx/85927a3aa646ae66ff0f1d88c54cc4ff to your computer and use it in GitHub Desktop.
Save mandarinx/85927a3aa646ae66ff0f1d88c54cc4ff to your computer and use it in GitHub Desktop.
Titled Tuesday score table widener
// ==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