Lichess Hide Ratings

Hides Ratings During Matches

  1. // ==UserScript==
  2. // @name Lichess Hide Ratings
  3. // @namespace http://userstyles.org
  4. // @description Hides Ratings During Matches
  5. // @author 636597
  6. // @include *://*lichess.org/*
  7. // @run-at document-start
  8. // @version 0.1
  9. // ==/UserScript==
  10.  
  11. function hide_ratings() {
  12. var sheet = window.document.styleSheets[ 0 ];
  13. sheet.insertRule( "rating , .players { display: none; }" , sheet.cssRules.length );
  14. }
  15.  
  16. window.addEventListener ( "load" , hide_ratings );