Skip to content

Instantly share code, notes, and snippets.

@rcastellotti
Last active March 20, 2022 13:16
Show Gist options
  • Save rcastellotti/61a110e0992864155e3871c834638bb8 to your computer and use it in GitHub Desktop.
Save rcastellotti/61a110e0992864155e3871c834638bb8 to your computer and use it in GitHub Desktop.
RCS sane rankings
// ==UserScript==
// @name RCS sane rankings
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Show full rankings on RCS websites
// @author @rcastellotti
// @match https://www.milanosanremo.it/*
// @match https://www.ilombardia.it/*
// @match https://www.strade-bianche.it/*
// @match https://www.tirrenoadriatico.it/*
// @match https://www.milanotorino.it/*
// @match https://ilgirodisicilia.it/*
// @match https://www.ilgranpiemonte.it/*
// @match https://www.giroditalia.it/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=milanosanremo.it
// @grant none
// ==/UserScript==
(function() {
'use strict';
let line_tables = document.getElementsByClassName("line-table")
Array.prototype.forEach.call(line_tables, function(el) {
el.style.display="flex";
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment