wickedfable / Hide F1 TV Results

// ==UserScript==
// @name         Hide F1 TV Results
// @namespace    http://inflatablespacesuit.co
// @version      1.1
// @description  Hide the winners from F1 past races on F1 TV (https://f1tv.formula1.com)
// @license      MIT
// @author       wickedfable
// @match        https://f1tv.formula1.com/*
// @grant        none
// ==/UserScript==

(function () {
  'use strict';
  var sheet = window.document.styleSheets[0];
  sheet.insertRule("[class*=\"_winners-\"] {visibility: hidden;}", sheet.cssRules.length);
  sheet.insertRule("[class*=\"-winners-\"] {visibility: hidden;}", sheet.cssRules.length);
})();