Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Hide Lichess Timeline
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @match        https://lichess.org/
  6. // ==/UserScript==
  7.  
  8. (function() {
  9.     'use strict';
  10.     document.getElementById("timeline").style.display = "none";
  11. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement