NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name lichess resign button remover // @namespace http://tampermonkey.net/ // @version 1.3 // @description This script removes the resign button on the lichess.org webseite // @author Frank Buss // @match https://lichess.org/* // @license MIT // @grant none // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.textContent = 'button.fbt.resign-confirm { display: none; }'; document.head.appendChild(style);